A user has to type the interface name twice when writing a Service. Would it be possible to have the @Service annotation default to no-args if the class implements only a single interface? (It seems likely that a Service class might often implement only a single interface.)
-----------------------------------------------------------------
@Service(SimpleService.class)
public class SimpleServiceBean implements SimpleService {
would become:
@Service
public class SimpleServiceBean implements SimpleService {
-------------------------------------------------------------------
Thanks for considering this JIRA.
|