作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的开发环境的applciation.properties
# thymeleaf
spring.thymeleaf.cache = false
# datasource
spring.datasource.url=jdbc:mysql://localhost:3306/my_db
spring.datasource.username=user_for_development
spring.datasource.password=my_password_for_development
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.jpa.database-platform=org.hibernate.dialect.MySQL5InnoDBDialect
spring.jpa.properties.hibernate.hbm2ddl.auto=update
和这个生产环境:
# thymeleaf
spring.thymeleaf.cache = false
# datasource
spring.datasource.url=jdbc:mysql://localhost:3306/my_db
spring.datasource.username=user_for_production
spring.datasource.password=my_password_for_production
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.jpa.database-platform=org.hibernate.dialect.MySQL5InnoDBDialect
spring.jpa.properties.hibernate.hbm2ddl.auto=update
如果我将我的项目运行“mvn package”到 jar,使用 application.properties 进行开发,它运行良好但这个 jar 在服务器生产中不起作用,因为与 mysql 的字符串连接不同。
最佳答案
我从不在我的 jar 中打包属性文件。部署的一部分是将正确的属性文件复制到类路径中。
关于java - 不同字符串连接到 mysql 的应用程序属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29620801/
我正在开发一个 voip 调用应用程序。我需要做的是在接到来电时将 Activity 带到前台。我在应用程序中使用 Twilio,并在收到推送消息时开始调用。 问题是我试图在接到任何电话时显示 Act
我是一名优秀的程序员,十分优秀!