Skip to content
 
 

Latest commit

 

History

139 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PROG 2 - Exercise 3

Start the application

Start the application by either running the main method in the FhmdbApplication class or by running mvn clean javafx:run in Maven.

Note: If you run the application with mvn clean javafx:run you may face an incompatible version error (java.lang.module.InvalidModuleDescriptorException: Unsupported major.minor version XXX). If so, check the version of your system Java installation (Environment Variables). Maven uses the default system Java installation. If you have multiple Java installations, you can set the Java version for Maven by adding the following to your pom.xml:

<build>
  ...
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.10.1</version>
            <configuration>
                <source>17</source> // change to your system version here
                <target>17</target> // and here
            </configuration>
        </plugin>
        ...
    </plugins>
</build>

ToDos for exercise 3

Andi:

  • [] UI Layer
  • [] Business Layer
  • [] Exception Handling in UI & Business

Sergiu:

  • [] Data Layer
  • [] Exception Handling in DB

About

PROG2 Exercise 3-4

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages