I'm not sure where to do database lookups for Spring controllers.
It seems to make sense to use the Spring @Service
stereotype and create multiple "services" to provide lookup support to controllers rather than doing lookups directly in the controllers.
Is this correct or is there a more appropriate place to perform database lookups?