Mit Dropwizard Authentication 0.9.0-SNAPSHOTDropwizard: BasicAuth
ich die Anmeldeinformationen gegen Datenbankbenutzer (UserDAO) überprüfen möchten.
Ich erhalte die folgende Ausnahme
! org.hibernate.HibernateException: keine Sitzung zur Zeit gebunden Ausführungskontext
Wie die Sitzung mit dem Authenticator zu binden? Oder gibt es bessere Möglichkeiten, den Datenbankbenutzer zu überprüfen?
Der Authenticator Klasse
package com.example.helloworld.auth;
import com.example.helloworld.core.User;
import com.example.helloworld.db.UserDAO;
import com.google.common.base.Optional;
import io.dropwizard.auth.AuthenticationException;
import io.dropwizard.auth.Authenticator;
import io.dropwizard.auth.basic.BasicCredentials;
public class ExampleAuthenticator implements Authenticator<BasicCredentials, User> {
UserDAO userDAO;
public ExampleAuthenticator(UserDAO userDAO) {
this.userDAO = userDAO;
}
@Override
public Optional<User> authenticate(BasicCredentials credentials) throws AuthenticationException {
Optional<User> user;
user = (Optional<User>) this.userDAO.findByEmail(credentials.getUsername());
if ("secret".equals(credentials.getPassword())) {
return Optional.of(new User(credentials.getUsername()));
}
return Optional.absent();
}
}
Die Anwendungsklasse
@Override
public void run(HelloWorldConfiguration configuration, Environment environment) throws Exception {
final UserDAO userDAO = new UserDAO(hibernate.getSessionFactory());
environment.jersey().register(new AuthDynamicFeature(
new BasicCredentialAuthFilter.Builder<User>()
.setAuthenticator(new ExampleAuthenticator(userDAO))
.setAuthorizer(new ExampleAuthorizer())
.setRealm("SUPER SECRET STUFF")
.buildAuthFilter()));
environment.jersey().register(RolesAllowedDynamicFeature.class);
//If you want to use @Auth to inject a custom Principal type into your resource
environment.jersey().register(new AuthValueFactoryProvider.Binder(User.class));
environment.jersey().register(new UserResource(userDAO));
Bitte beachten Sie, dass diese Frage 0.9.0- rc bezieht sich RC4. –
schlägt das gleiche Problem mit 0.9.1.Final – harshil