SpringBoot中Tomcat配置(学习SpringBoot实战)

1、Tomcat配置

Spring Boot默认内嵌的Tomcat为Servlet容器,所以本节只讲对Tomcat配置,其实本节的配置对Tomcat、Jetty和Undertow都是通用的。

1.1 配置Tomcat

关于Tomcat的所有属性都在org.springframework.boot.autoconfigure.web.ServerProperties配置类中做了定义,我们只需在application.properties配置属性做配置即可。通用的Servlet容器配置都以"server"作为前缀,而Tomcat特有配置都以"server.tomcat"作为前缀。下面举一些常用的例子。

配置servlet容器

server.port = #配置程序端口,默认为8080
server.session-timeout=#用户session过期,以秒为单位
server.context-path= #配置访问路径,默认为/

配置Tomcat

server.tomcat-uri-encoding = #配置Tomcat编码,默认为UTF-8
server.tomcat.compression = #Tomcat是否开启压缩,默认为关闭off

1.2 代码配置Tomcat

如果你需要通过代码的方式配置servlet容器,则可以注册一个实现EmbeddedServletContainerCustomizer接口的Bean,若想直接配置Tomcat、Jetty、Undertow,则可以直接定义TomcatEmbeddedServletContainerFactor、JettyEmbeddedServletContainerFactor、UndertowEmbeddedServletContainerFactor。

1.2.1 编写案例,项目目录如下

SpringBoot中Tomcat配置(学习SpringBoot实战)_第1张图片

1.2.2 pom.xml的内容如下



    4.0.0

    com.wisely
    ch7_4
    0.0.1-SNAPSHOT
    jar

    ch7_4
    Demo project for Spring Boot

    
        org.springframework.boot
        spring-boot-starter-parent
        1.3.0.M1
         
    

    
        UTF-8
        1.8
    

    
        
            org.springframework.boot
            spring-boot-starter-web
        

        
            org.springframework.boot
            spring-boot-starter-test
            test
        
    

    
        
            
                org.springframework.boot
                spring-boot-maven-plugin
            
        
    

    
        
            spring-snapshots
            Spring Snapshots
            https://repo.spring.io/snapshot
            
                true
            
        
        
            spring-milestones
            Spring Milestones
            https://repo.spring.io/milestone
            
                false
            
        
    
    
        
            spring-snapshots
            Spring Snapshots
            https://repo.spring.io/snapshot
            
                true
            
        
        
            spring-milestones
            Spring Milestones
            https://repo.spring.io/milestone
            
                false
            
        
    



1.2.3 index.html的内容




    
    Insert title here


index page


1.2.4 404.html




    
    Insert title here


page not found,this is 404 page!


1.2.5 CustomServletContainer.java的内容

package com.wisely.ch7_4;

import ch.qos.logback.core.util.TimeUtil;
import org.springframework.boot.context.embedded.ConfigurableEmbeddedServletContainer;
import org.springframework.boot.context.embedded.EmbeddedServletContainerCustomizer;
import org.springframework.boot.context.embedded.ErrorPage;
import org.springframework.http.HttpStatus;
import org.springframework.stereotype.Component;

import java.util.concurrent.TimeUnit;

@Component
public class CustomServletContainer implements EmbeddedServletContainerCustomizer {

    @Override
    public void customize(ConfigurableEmbeddedServletContainer container) {
        container.setPort(8888);
        container.addErrorPages(new ErrorPage(HttpStatus.NOT_FOUND, "/404.html"));
        container.setSessionTimeout(10, TimeUnit.MINUTES);
    }
}

1.2.6 Ch74Application.java的内容

package com.wisely.ch7_4;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

@Controller
@SpringBootApplication
public class Ch74Application {

    @RequestMapping("/")
    @ResponseBody
    private String hello() {
        return "hello!";
    }

    @RequestMapping("/toIndex")
    public String toIndexPage() {
       return "index1";
    }

    public static void main(String[] args) {
        SpringApplication.run(Ch74Application.class,args);
    }
}

1.2.7 运行

浏览器中输入:http://localhost:8888/toIndex
这里写图片描述

浏览器中输入:http://localhost:8888,最后的效果如下:
这里写图片描述

你可能感兴趣的:(java,java,后端)