@Resource
private AccountService accountService;
public UserDetails loadUserByUsername(String username) throws UsernameNotFoundException {
Account account = accountService.getByLoginName(username);
UserDetails userDetails = new UserDetailsImpl(account);
return userDetails;
}