appfuse:我应该配置 jdbc 凭据两次吗?
appfuse 新手 - 我喜欢这个概念。
我在 jdbc.properties 中配置了数据库的用户名/密码。
它不起作用。所以我也在 pom.xml 中配置了我的凭据
为什么会这样?我做错了什么吗?
New to appfuse - I like the concept.
I configured the username/password to the database in jdbc.properties.
It didn't work. So I also configured my credentials in pom.xml
Why is it so? Am I doing something wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该保留 jdbc.properties 文件及其 ${xxx} 值占位符。 Maven 将获取 pom.xml 中的属性,并在编译时将 jdbc.properties 资源文件中的 ${xxx} 替换为正确的价值观。将属性值注入资源文件的操作是通过将过滤设置为 true 来配置的。
一般经验法则是永远不要在两个不同的位置具有相同的属性(或代码或数据)。这种重复几乎总是不必要的,并且使应用程序更难以维护。
You should leave the jdbc.properties file alone with its ${xxx} value placeholders. Maven will take the properties in your pom.xml and at compile time replace the ${xxx} in your jdbc.properties resource file with the proper values. This action of injecting property values into resource files is configured by setting filtering to true via
A general rule of thumb is to never have the same properties (or code, or data) in two different places. This duplication is almost always unnecessary and makes applications harder to maintain.