Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using apache shiro to authenticate a user and i want to simply print the username out to my console to check if my finder function is working properly, it seems as when i add a record to the user (using a sql statement and not eclipseLink, the record is deleted when the application is run ?)

Here is how i am trying to retrieve a single user by username:

protected AuthenticationInfo doGetAuthenticationInfo(AuthenticationToken authcToken) throws AuthenticationException {
    UsernamePasswordToken token = (UsernamePasswordToken) authcToken;
    Map<String, String> map = new HashMap<String, String>();
    String tempUsername = token.getUsername();
    String password = "";
    Users user;

    // Null username is invalid
    if (tempUsername == null) {
        throw new AccountException("Null usernames are not allowed by this realm.");
    }
    AuthenticationInfo info = null;
    // this will query and find the users by the specified username and then return us the single result
    user = getAuthorizedUser(Users.findUsersesByUsernameEquals(tempUsername));
    System.out.print(user.getUsername());
    System.out.println("yea the username = ");
    password = user.getPassword();
    info = buildAuthenticationInfo(tempUsername, password.toCharArray());
    return info;
}
/*Build the required authentication info; Replace with SaltAuthenticationInfo for salted passwords*/
protected AuthenticationInfo buildAuthenticationInfo(String username, char[] password) {
          return new SimpleAuthenticationInfo(username, password, getName());
}

protected Users getAuthorizedUser(TypedQuery<Users> q){
    System.out.println("working authentication");

      return q.getSingleResult(); 
}

Is this because i am not using JPA to persist and add the user but rather writing a sql statement outside my application?

share|improve this question
No idea what your question is. Perhaps explain what happens better and include the log on finest. – James Dec 21 '11 at 14:39
I ended up doing this and found things working properly but a property was set that kept dropping tables and creating them on each run. – Warz Dec 21 '11 at 17:42

1 Answer

up vote 0 down vote accepted

I disabled this property <property name="eclipselink.ddl-generation" value="drop-and-create-tables"/>

This was deleting my test records and solved my problem.

share|improve this answer
Congrats on the solution. When you can, make sure you mark your answer as "Accepted" so that others might learn from your success. Cheers~ – Andrew Kozak Dec 21 '11 at 18:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.