...
Main Java source files, the files that will be compiled into the WAR file, are in src/main/java
. This is only Java source files. You can see the Index.java
source file inside the pages
subpackage, and the Layout.java
source file inside the components
subpackage. The package names demonstrated here are required, dictated by the rules for component classes.
Compiled Java classes will ultimately be packaged in the WAR inside the WEB-INF/classes
folder.
...
The folders src/test/java
and src/test/resources
are used when compiling and executing tests. Files in these folders are not packaged into the final WAR.
Scrollbar |
---|