Hi I am loading a property file to establish DB connection, ex:
DB1="JDBc................", username , password
above line is as in property file, but when i call getConnection method I need to send url, username and pw. How can I parse it.
|
Hi I am loading a property file to establish DB connection, ex:
above line is as in property file, but when i call getConnection method I need to send url, username and pw. How can I parse it.
| |||||
feedback
|
This way you get better clarity and control. | |||
|
feedback
|
|
It is better to define separately
Still if you want to parse it, you can use the split method of string to split by comma | |||
|
feedback
|
|
You can put your key/value pairs in a properties file like so
Then you can load them into your app from the properties file
And then you can use those values to create your connection. | ||||
|
feedback
|