Commit 0187cdc30114ae62fd78978f4b2ac95132277fca
1 parent
a9d5ae59
update...
Showing
2 changed files
with
1 additions
and
21 deletions
pom.xml
| ... | ... | @@ -178,21 +178,6 @@ |
| 178 | 178 | <groupId>org.springframework.boot</groupId> |
| 179 | 179 | <artifactId>spring-boot-maven-plugin</artifactId> |
| 180 | 180 | </plugin> |
| 181 | - <plugin> | |
| 182 | - <groupId>org.springframework.boot</groupId> | |
| 183 | - <artifactId>spring-boot-maven-plugin</artifactId> | |
| 184 | - <configuration> | |
| 185 | - <jvmArguments>-Dfile.encoding=UTF-8</jvmArguments> | |
| 186 | - </configuration> | |
| 187 | - <!-- mvn spring-boot:repackage --> | |
| 188 | - <executions> | |
| 189 | - <execution> | |
| 190 | - <goals> | |
| 191 | - <goal>repackage</goal> | |
| 192 | - </goals> | |
| 193 | - </execution> | |
| 194 | - </executions> | |
| 195 | - </plugin> | |
| 196 | 181 | </plugins> |
| 197 | 182 | <resources> |
| 198 | 183 | <resource> | ... | ... |
src/main/resources/application.properties
| 1 | 1 | spring.profiles: dev,prod |
| 2 | -spring.profiles.active: prod | |
| 2 | +spring.profiles.active: dev | |
| 3 | 3 | |
| 4 | 4 | spring.view.suffix=.html |
| 5 | 5 | server.session-timeout=-1 |
| ... | ... | @@ -11,11 +11,6 @@ multipart.maxFileSize = -1 |
| 11 | 11 | # Total request size for a multipart/form-data |
| 12 | 12 | multipart.maxRequestSize = -1 |
| 13 | 13 | |
| 14 | -spring.http.encoding.force=true | |
| 15 | -spring.http.encoding.charset=UTF-8 | |
| 16 | -spring.http.encoding.enabled=true | |
| 17 | -server.tomcat.uri-encoding=UTF-8 | |
| 18 | - | |
| 19 | 14 | server.compression.enabled=true |
| 20 | 15 | server.compression.mime-types=application/json,application/xml,text/html,text/xml,text/plain,text/javascript,text/css,application/javascript |
| 21 | 16 | ... | ... |