javafx font issuejavafx application font issue
Problem Hi, i am studying javaFX, and trying to run aplication which showing data from database MySQL8 + Hibernate. Data and files are shown, but there some issue with font presentataion. Could you advice something, how to fix it?
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;
public class AppTest extends Application {
@Override
public void start(Stage primaryStage) throws Exception {
Parent root = FXMLLoader.load(getClass().getResource("/views/allAdsView.fxml"));
primaryStage.setTitle("My First App");
primaryStage.setScene(new Scene(root, 1280, 800));
primaryStage.show();
}
}