Are you sure the application is able to find the properties file? Did u try
debugging and find out this? Also the best way to configure ur connection
parameters is to put it in your web.xml context-param like:
<web-app>
.......
.......
<context-param>
    <param-name>db_driver</param-name>
    <param-value>oracle.jdbc.driver.OracleDriver</param-value>
</context-param>
<context-param>
    <param-name>db_server</param-name>
    <param-value>192.168.31.41</param-value>
</context-param>
.....
.....
</web-app>

- litty preeth

On Tue, Jan 27, 2009 at 6:39 AM, Fitch <arvi...@gmail.com> wrote:

>
> Hi, i´m devloping a GWT web application and i´m having problems
> deploying it.
> My application does interact with a database, so i have got a client
> package and a server package. The operations with the database are in
> the server package. I would like to specify database parameters (url,
> username and pass) in a .properties file. This way, I can change the
> url, username or password without compiling again.
>
> How can I do this? I tried having a "file.properties" file at WEB-INF/
> classes/ and then access it from my server package with this:
>
> this.getClass().getClassLoader().getResourceAsStream
> ("procedimientos.properties");
>
> but this does not work, when i change the data at file.properties, the
> application continues connecting to the same database. Even if i
> delete the file from web-inf/classes at tomcat/webapps folder, it does
> work.
>
> Can anyone help me, please??
>
> Thank you very much
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to