我有一个在没有数据库的Tomcat中正常运行的webapp。
如果我将以下内容添加到tomcat context.xml中,它似乎会终止整个服务器,我的应用程序和tomcat管理器应用程序的页面和连接被拒绝了:
<Context docBase="${catalina.base}/webapps/ROOT.war">
<Parameter name="application.properties" value="/home/users/tomcat/application.properties"/>
</Context>
application.properties
中有一个/home/users/tomcat/
文件,它与运行tomcat的用户相同。那么为什么这条线路会让我的服务器停机?
MySQL 5.5正在运行,我使用的属性文件是:
spring.datasource.url=jdbc:mysql://localhost:3306/springboot
spring.datasource.username=automation
spring.datasource.password=xxxxxxxxxxxx
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
#comment out below line to create schema on new database
spring.jpa.hibernate.ddl-auto=update
如何解决数据库连接问题?
我知道mysql是为端口3306配置的,如果我使用SSH,它会让我登录该文件中的详细信息。