作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我用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/
我是一名优秀的程序员,十分优秀!