我正在尝试将spring mvc项目部署到我的tomcat服务器。但是resources/application.yml
中的设置在tomcat服务器上不起作用。
在我的IntelliJ Tomcat Server
中,确实如此。
pom.xml:
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
<configuration>
<url>https://example.com/manager/text</url>
<server>TomcatServer</server>
</configuration>
</plugin>
resources /中的application.yml:
server:
servlet:
contextPath: /
session:
timeout: 3000
该站点以我的项目名称而不是/可用(在tomcat服务器上,/下没有站点)
会话生存期为1800
,而不是3000
有人知道出什么问题吗?