Java search for getResources(), from the working directory, you can locate it using:
System.out.println( System.getProperty( "user.dir" ));
Probably, this print:
xxx/org/example/ooplibrary
Then your call should be:
URL url = this.getClass().getResource( "/View/LogInView.fxml" );