| | |
| | | package com.ycl.jxkg.config.spring.security; |
| | | |
| | | import com.ycl.jxkg.domain.enums.RoleEnum; |
| | | import com.ycl.jxkg.enums.RoleEnum; |
| | | import com.ycl.jxkg.service.UserService; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.security.core.GrantedAuthority; |
| | |
| | | @Override |
| | | public UserDetails loadUserByUsername(String username) throws UsernameNotFoundException { |
| | | |
| | | com.ycl.jxkg.domain.User user = userService.getUserByUserName(username); |
| | | com.ycl.jxkg.domain.entity.User user = userService.getUserByUserName(username); |
| | | |
| | | if (user == null) { |
| | | throw new UsernameNotFoundException("Username not found."); |