Java Play Encrypt Database Password
问题 I'm developing a Java Play application and I'm storing the Database password in plain text inside the application.conf file. db.default.url="jdbc:oracle:thin:@HOST:PORT/SID" db.default.user=USER db.default.pass=PW Now i want to store it as an encrypted password. While searching for a solution I saw many articals about implementing a plugin. Following is an solution I came across. Encrypting db password in application.conf In that example, play.PlayPlugin is used but when I try it, I get an