gpt4 book ai didi

spring-boot - 如何在tomcat7上运行springboot2.0?

转载 作者:行者123 更新时间:2023-11-28 23:13:26 25 4
gpt4 key购买 nike

我用springboot2.0写的kotlin项目,想在tomcat7上运行,但是失败了。在网上找了一些答案,trid,没有成功。如何解决这个问题?

我尝试将tomcat版本设置为7.0.58,但是失败了。

allprojects {

group 'com.nbugs.bridge'
version '1.0.0'

ext {
kotlin_version = "1.2.51"
boot_version = "2.0.5.RELEASE"
tomcat_embed = "7.0.59"
}

sourceCompatibility = 1.8
}






dependencies {
compile("org.springframework.boot:spring-boot-starter-web")
compileOnly("org.springframework.boot:spring-boot-starter-tomcat")

}

没有成功

最佳答案

Spring Boot web默认自带Tomcat,如果要更改版本,可以通过以下方式进行:

ext['tomcat.version'] = '8.0.36'

dependencies {
compile('org.springframework.boot:spring-boot-starter-web')
compile group:'org.apache.tomcat', name:'tomcat-juli', version:property('tomcat.version')
}

关于spring-boot - 如何在tomcat7上运行springboot2.0?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53919392/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com