vote up 1 vote down star

Is there any standard directory layouts for Java projects? What layout do you prefer most?

I'm asking about more complex layout than just 'src' and 'bin' in project's directory (i.e. where do you put your test classes, build configurations, etc.?).

Thanks in advance.

flag

4 Answers

vote up 1 vote down

I usually use /src for source code, /test or /tst for test code, /build for class files, /lib or /libs for dependencies, /dist for my JAR and libraries (so I can just compress the directory and distribute it without thinking), and /docs for documentation (including JavaDoc). My Ant build script goes in the directory that the ones I named are subdirectories of.

When I build, I create the JAR from /build and copy /lib and maybe /docs into /dist.

link|flag
I don't think I forgot any major directories or file sets. If I did, let me know and I'll add where I put them. I don't have any major Java projects outside of work at the moment. – Thomas Owens Jul 23 at 22:43
vote up 0 vote down

I use:

programming
  - distro
  - java
      - lib
      - src
          - com...
          - net...
          - org...
      - tools

And I compile classes side-by-side with the sources, and package from there to a subdirectory of distro.

link|flag
vote up 0 vote down

Are you using any build tools? Like Maven for example? If not, you probably should - and in that case your directory layout would be predefined for you.

link|flag
... and in the particular case of Maven, you would be well advised not to stick with the predefined layout! – Stephen C Jul 23 at 22:59
Care to elaborate? I'm not saying you need to follow it to the letter, but what's wrong with the overall layout? – ChssPly76 Jul 23 at 23:01
That's one reason why I don't like Maven at all. – duffymo Jul 23 at 23:01
2  
The layout for Maven does look a bit overengineered. Could you elaborate on why you think it's a good layout, other than that you have no choice. – Marcus Downing Jul 23 at 23:19
1  
Voting +1 against all the anti-Mavite jackasses voting this down... – Nate Jul 24 at 14:32
show 5 more comments
vote up 0 vote down

For web projects I usually use:

<project name>
  dev
    src
    lib
    www
    build.xml
  build
    www
    bin
  www

The www folder in src is the original. The www folder in build is where that gets combined with the contents of similar folders to produce what needs to be uploaded. The www folder outside is where I run a local copy, complete with temporary files and other such garbage. I have an ant script in build.xml to copy things around.

I'd like to know if there is any sort of standard.

link|flag
And your tests go where? – ChssPly76 Jul 23 at 23:49

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.