Skip to content

Instantly share code, notes, and snippets.

@trimoq
Created January 8, 2020 13:59
Show Gist options
  • Save trimoq/a5baa11b33e39f6c8425952590441ee0 to your computer and use it in GitHub Desktop.
Save trimoq/a5baa11b33e39f6c8425952590441ee0 to your computer and use it in GitHub Desktop.
UserService having the repository injected
public class UserService{
@Autowired
private UserRepository userRepository;
public void addUser(String name){
// do some business logic here
userRepository.addUser(name);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment