Advertisement
Guest User

Untitled

a guest
Mar 8th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. @Service
  2. class UserService {
  3. @Autowired
  4. private lateinit var userRepository: UserRepository
  5.  
  6. @Autowired
  7. private lateinit var bCryptPasswordEncoder: BCryptPasswordEncoder
  8.  
  9. fun create(user: User): User {
  10. user.password = bCryptPasswordEncoder.encode(user.password)
  11. return userRepository.save(user)
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement