I inherited a Java web application due to my expertise in .Net(I have no experience in Java). I need to change this:
http://**DatabaseOne**.Domain.com:Port/dir1/dir2
to this:
http://**DatabaseTwo**.Domain.com:Port/dir1/dir2
In .Net we have a Webconfig file where the connection strings are stored.
My research( Question 1 2 3 shows that there should be a Content.xml, Web.xml and/or Server.xml in a Java directory.
The Content and Web xmls that I have found, do not contain the connection strings I am looking for.
The DBManager.Java contains:
Public Connection getPoolConnection() throws JDBCConnectionException{
return JDBCService.GetConnection("oracleUIPool");
}
This Java web app seems to be a part of a larger Java web app, so the connection string must be somewhere at a higher level directory? What would be the name of this directory?
I did notice files named Beans, JetSpeed, and Struts, if that helps.