Project for Enterprise Computing course.
- Run Maven Lifecycle package with:
mvn package
- (If run locally) Start Core:
- Change Dir to advance-ticket-sale/core/target
- Run with
java -jar core-beans-1.0-jar-with-dependencies.jar
- Start a client:
- Change Dir to advance-ticket-sale/client.javafx/target
- Run with
java -jar client.javafx-1.0-jar-with-dependencies.jar
You might need to add the following to your runtime policies:
The policy file can be found inside your JRE:
Example Path:
C:\Program Files\Java\jdk1.8.0_191\jre\lib\security\java.policy
Add the following to the file at the specified place.
grant {
/* OHTER Permissions */
permission javax.management.MBeanTrustPermission "register";
};
Repo for Client in CSharp: https://github.com/MaRu999/CsharpClient