Where to Save config.properties File in Java Projects
Here is an example where the config.properties file should be saved:
#config.properties file
#Database configuration
db.host=localhost
db.port=3306
db.name=mydatabase
db.username=myusername
db.password=mypassword
#Server configuration
server.host=localhost
server.port=8080
server.timeout=30000
In this example, the 'config.properties' file should be saved in the root directory of the project.
原文地址: https://www.cveoy.top/t/topic/nArh 著作权归作者所有。请勿转载和采集!