forked from springside/springside4
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
springside#394 update Spring Boot demo的测试方法
- Loading branch information
Calvin
committed
Oct 12, 2014
1 parent
1073c07
commit 429cdce
Showing
5 changed files
with
99 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
Things not in demo | ||
|
||
1. use applicactionContextxml | ||
|
||
@ImportResource("applicationContext.xml") | ||
public class BootServiceApplication { | ||
} | ||
|
||
|
||
2. use Jetty instead of Tomcat | ||
|
||
3. disable web in junit test use spring context | ||
|
||
setWebEnvironment(false) | ||
|
||
4. set system exit code | ||
|
||
org.springframework.boot.ExitCodeGenerator | ||
|
||
5. read configuration | ||
@Value(${name}) | ||
String name | ||
|
||
or | ||
|
||
@Autowired | ||
Environment env; | ||
env.get | ||
|
||
6. set the configuration file path | ||
|
||
java -jar myproject.jar --spring.config.location=classpath:/default.properties,classpath:/override.properties | ||
|
||
or just change the file name | ||
|
||
java -jar myproject.jar --spring.config.name=myproject | ||
|
||
7. active profile | ||
java -jar myproject.jar --spring.profiles.active=dev,hsqldb | ||
|
||
SpringApplication.setAdditionalProfiles(…) | ||
|
||
8. define logging level in appliation.properties | ||
|
||
logging.level.org.springframework.web: DEBUG | ||
logging.level.org.hibernate: ERROR | ||
|
||
9. add spring-mvc defenation | ||
wtrite WebMvcConfigurerAdapter without @EnableWebMvc | ||
|
||
10. add servlet/filter | ||
|
||
in application.properties | ||
|
||
ServletRegistrationBean or FilterRegistrationBean | ||
|
||
11. configure web | ||
|
||
add context path | ||
server.contextPath | ||
|
||
set tomcat threads | ||
|
||
12. JMX | ||
|
||
@ManagedResource, @ManagedAttribute, @ManagedOperation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters