目前,我正在使用Tomcat5.8.1版本开发应用程序,它已经配置了Untertow,我们必须将其切换到JHipster。
有人能帮我完成这个过程吗?因为我完全迷失了方向,真的不知道该怎么做?我想尽可能地避免对项目的影响。
发布于 2020-08-23 11:32:46
如果您正在使用gradle,请在build.gadle文件中
同时删除包含undertow implementation "org.springframework.boot:spring-boot-starter-undertow"的行exclude module: "spring-boot-starter-tomcat"
Springboot默认的嵌入式服务器是tomcat。删除这2行将使您的应用程序使用默认的springboot配置
https://stackoverflow.com/questions/54787624
复制相似问题