Skip to content

Instantly share code, notes, and snippets.

@Ikhiloya
Last active June 23, 2018 09:37
Show Gist options
  • Save Ikhiloya/f32e7d6106273daf453429e65c6d19df to your computer and use it in GitHub Desktop.
Save Ikhiloya/f32e7d6106273daf453429e65c6d19df to your computer and use it in GitHub Desktop.
service class for spring-boot-jpa-oracle tutorial
@Service
public class UserService {
@Autowired
UserDao userDao;
public List<User> getAllUsers() {
return this.userDao.findAll();
}
public User addUser(User user) {
return this.userDao.save(user);
}
//other methods omitted for brevity
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment