failed to lazily initialize a collection of role: User.authorities, could not initialize proxy - no Session
Give it a try;
In Service;
User user = userService.findByUsername(username);
user.getAuthorities().size(); //You may need call this line in userService.findByUsername(username); method
In User;
public Set<Authority> getAuthorities(){
return authorities;
}