2015-02-10 15:54:06 +00:00
|
|
|
|
### 26.3.3. 自定义内嵌servlet容器
|
|
|
|
|
|
|
|
|
|
常见的Servlet容器设置可以通过Spring Environment属性进行配置。通常,你会把这些属性定义到application.properties文件中。
|
|
|
|
|
常见的服务器设置包括:
|
|
|
|
|
|
|
|
|
|
1. server.port - 进来的HTTP请求的监听端口号
|
|
|
|
|
2. server.address - 绑定的接口地址
|
|
|
|
|
3. server.sessionTimeout - session超时时间
|
|
|
|
|
|
|
|
|
|
具体参考[ServerProperties](http://github.com/spring-projects/spring-boot/tree/master/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/ServerProperties.java)
|