Check the "run" configuration of your app... Eventually try to delete it and create a new one. The "Run" configuration may not contain the same classpath.
On 6/8/06, Dan Adams <[EMAIL PROTECTED]> wrote:
Well, that's the thing. The properties file *is* on the build path and the same code works fine in the web app. But I never run normal java apps within eclipse so i'm not sure if we're doin something wrong. I made sure that the project is on the java app runner classpath as well as the maven dependencies and even the actually classes folder. Guess I'll have to fool with it or something. On Thu, 2006-06-08 at 14:58 -0400, Jesse Kuhnert wrote: > Eclipse can be decieving. You have to be really sure the properties file you > are referencing really ~is~ on the classpath when you run it in eclipse. My > guess is that it is not. This usually isn't an issue if the resources you > are referencing are in the same tree as your java sources. > > Not to worry though.. If you go to Project->Java Build Path-> and add in > whatever folder contains your .properties file as either a new source folder > or into the library path (as a class folder) it should pick it up. (maybe > ...you'll have to play with it) > > On 6/8/06, Dan Adams <[EMAIL PROTECTED]> wrote: > > > > I have static method where i need to read a .properties file off of the > > classpath. The same code that works when running under a tapestry > > application in jetty does not work when run as a normal java program in > > eclipse. It's a static method and we're getting the resource using: > > > > ThisClass.class.getClassLoader > > ().getResourceAsStream("/path/to/resource.properties"); > > > > Any suggestions? > > > > -- > > Dan Adams > > Software Engineer > > Interactive Factory > > 617.235.5857 > > > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > For additional commands, e-mail: [EMAIL PROTECTED] > > > > > > -- Dan Adams Software Engineer Interactive Factory 617.235.5857 --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
-- Thanks, Henri.