美文网首页
在springboot中排除tomcat,使用其他webserv

在springboot中排除tomcat,使用其他webserv

作者: 这里有鱼 | 来源:发表于2020-08-07 08:25 被阅读0次

    excluding tomcat dependencies from springboot in gradle

     implementation ('org.springframework.boot:spring-boot-starter-web'){
            exclude group: 'org.springframework.boot', module: 'spring-boot-starter-tomcat'
        }
    
        implementation('org.springframework.boot:spring-boot-starter-websocket') {
            exclude  group: 'org.springframework.boot', module: 'spring-boot-starter-tomcat'
        }
        implementation 'org.springframework.boot:spring-boot-starter-undertow'
    
    configurations {
        compile.exclude module: 'spring-boot-starter-tomcat'
        compile.exclude group: 'org.apache.tomcat'
    }
    

    相关文章

      网友评论

          本文标题:在springboot中排除tomcat,使用其他webserv

          本文链接:https://www.haomeiwen.com/subject/whojrktx.html