On 23 oct, 07:23, zujee <[EMAIL PROTECTED]> wrote: > I have so many property files and corresponding java file which > extending messages. So I have planned to put all these proerty files > in one jar and put the corresponding java file which extending > messages in local folder, where i can set the path corresponding > property files. Is that possible? then can some of you experts pls > direct me how can i achive that
First, resources are loaded from the classpath, so whichever JAR they live in, as long as they're in the classpath, they'll be found. This means that you don't even have to change your code for this to work, just package your properties file within another JAR, preserving the package hierarchy (folders inside the JAR). --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/Google-Web-Toolkit?hl=en -~----------~----~----~----~------~----~------~--~---
