Here's a breakdown of the different project components:
src/main/java
: The source code for the project, organized by package:eu.ammbra.bday.Organizer.java
: The main entry point of the application, possibly responsible for coordinating the overall flow of the program.eu.ammbra.bday.details
: A package containing domain model classes. These classes represent entities involved in birthday celebrations, such as cakes, parties, and people attending them.eu.ammbra.bday.handlers
: A package containing classes responsible for handling specific tasks.eu.ammbra.bday.operations
: A package containing classes responsible for handling the operational side of parties.eu.ammbra.bday.store
: A package containing classes responsible for interacting with data from files.
src/main/resources/store/events.json
: A resource file containing sample event data in JSON format.src/test/java
: The source code for unit tests and integration tests.
Since JDK 22 you can use the Java launcher to execute source-code programs provided as multiple files.
java --class-path '*' Prog1.java
This activity relies on you to execute the following steps:
- Open a terminal window in the
lab-jdk-tools/A_bday_java
folder. You can use the terminal of your IDE/code editor. - Check that $JAVA_HOME is properly set by trying
echo $JAVA_HOME
. - Inside the terminal, execute the
java
command to launchOrganizer
class fromsrc/main/java/eu/ammbra/bday/
. Pay attention to the following:
- classpath libraries located in
lab-jdk-tools/lib
folder. - the project uses preview features so do not forget to enable those via
--enable-preview
When working with the java
launcher, you can shorten or simplify the java
command by using @
argument files to specify one or more text files that contain arguments.
The arguments can be options and class names, which are then passed to the java
command. This allows you to :
- create
java
commands of any length on any operating system - for containerized applications, easily swap the content the argument files without modifying the Dockerfile.
This activity requires you to:
- Create a file and copy the arguments you used to launch the
Organizer
class fromsrc/main/java/eu/ammbra/bday/
. - Now launch again the
Organizer
class by providing the file as argumentjava @your-arg-file-name
.
Next step is to create some documentation!