• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Test files deploying to Tomcat in Eclipse, how do you stop Eclipse from doing this

 
ranger
Posts: 17347
11
Mac IntelliJ IDE Spring
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
So we have a properties file that is in the src and the test resource directories. When we deploy the app to Tomcat running in Eclipse, it takes the test resource files, which is incorrect. Test needs to be a source directory so we can run the tests, but the tests obviously don't run in Tomcat.

Besides using "excludes" in the source, how can you get Eclipse not to deploy the test classes and resource files onto the Tomcat running in Eclipse.

Thanks

Mark
 
Saloon Keeper
Posts: 27807
196
Android Eclipse IDE Tomcat Server Redhat Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You should have 2 separate source directories - one for the app and one for the tests. If you want to use Maven's standards, they'd be src/main/java and src/test/java.

Normally Eclipse compiles all classes to a single output directory (by default, it's "bin"). However, you can designate individual output directories on a per-source-directroy basis. That will keep the unit test classes out of the WAR.
 
Mark Spritzler
ranger
Posts: 17347
11
Mac IntelliJ IDE Spring
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Tim Holloway wrote:You should have 2 separate source directories - one for the app and one for the tests. If you want to use Maven's standards, they'd be src/main/java and src/test/java.

Normally Eclipse compiles all classes to a single output directory (by default, it's "bin"). However, you can designate individual output directories on a per-source-directroy basis. That will keep the unit test classes out of the WAR.



Thanks everything is already configured that way. But for some reason, it still is taking files from the resource directory for tests and putting into the deployment on Tomcat. Tomcat is being run inside Eclipse, so it is all in a tmp0 directory that Eclipse is making and copying files into that directory.

Mark
 
Ranch Hand
Posts: 68
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Bump. I am having a very similar issue. How did you resolve this?
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic