I followed your instructions except I create project in netbeans. But it cause this error (when sign in):
Exception in thread "JavaFX Application Thread" java.lang.RuntimeException: java.lang.reflect.InvocationTargetException
at javafx.fxml.FXMLLoader$MethodHandler.invoke(FXMLLoader.java:1774)
.
.
.
at com.codetreatise.service.impl.UserServiceImpl.findByEmail(UserServiceImpl.java:61)
at com.codetreatise.service.impl.UserServiceImpl.authenticate(UserServiceImpl.java:50)
at com.codetreatise.controller.LoginController.login(LoginController.java:53)
//This function cause java.lang.RuntimeException: java.lang.reflect.InvocationTargetException
@Override
public User findByEmail(String email) {
return userRepository.findByEmail(email);
}
What to do to fix this?
This is full console log.
log.txt
I followed your instructions except I create project in netbeans. But it cause this error (when sign in):
What to do to fix this?
This is full console log.
log.txt