Skip to content
Advertisement

Java Project Build and run problem with FX

i’m trying run a project with this architecture…
Project architecture

And, when i press “Run” button the code gives me this error…

JavaScript

My code of my Main…

JavaScript

And i have this run cofiguration:

--module-path "C:UsersGiovaDownloadsjavafx-sdk-17.0.0.1lib" --add-modules=javafx.controls

I need help to solve this problem and run the project please

Advertisement

Answer

You are using fxml so you need to add the fxml module, otherwise it will not be visible for use:

JavaScript

See the openjfx.io documentation titled Run HelloWorld using JavaFX SDK.

Example execution command for Linux from that source (modified to add the javafx.fxml module):

JavaScript

Alternately, you can define a module-info.java file which requires javafx.fxml and any other modules required for your application. See: Understanding Java 9 modules.

JavaScript

Substituting your info for:

  • module <your module name> any name you want, but best to put it as the name of the primary package of your app, e.g. com.example.javafx.myapppackage. Follow Java 9 module naming conventions.
  • opens <your package> to javafx.fxml a package which uses fxml (opens is required to allow the fxml package to reflect on your code).
  • exports <your package> a package you want to make visible (via export) to users of your application’s module code; e.g. the package which contains the class in your appliction with a main(args) method.

Or, you can ignore the module system using the hack provided in mipa’s answer, as mipa does have a very good point about the additional complexity involved in using the module system. It is not a supported configuration by the JavaFX developers, but will likely work OK for your app.

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement