springboot用tomcat部署启动两次解决办法

1、去除springboot内置tomcat

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

2、打开tomcat配置文件server.xml,修改Host中的appBase,将其变为空

重启tomcat即可

你可能感兴趣的:(springboot用tomcat部署启动两次解决办法)