Open cobolbaby opened 3 months ago
Two questions:
build/class
directory? Can the path be customized?.class
files. Are these also generated automatically?the process of generating compiled files is as follows: first, write the source code in .java files. then, the java compiler (javac) compiles the .java files into bytecode files, which are .class files. the build tool automatically create the build/classes directory and places the compiled .class files in it. these .class files are organized according to the package structure of the original source code.
the xml files are part of the project configuration and are not generated automatically by the java compiler.
The build/classes directory is typically generated during the process of compiling Java source code into bytecode. Here's how it generally works: