Skip to content

Instantly share code, notes, and snippets.

@olamy
Created August 9, 2011 19:18
Show Gist options
  • Save olamy/1134927 to your computer and use it in GitHub Desktop.
Save olamy/1134927 to your computer and use it in GitHub Desktop.
not
<jaxrs:server id="bookservice" address="/">
<jaxrs:serviceBeans>
<ref bean="bookstore"/>
<ref bean="bookstoreInterface"/>
</jaxrs:serviceBeans>
</jaxrs:server>
but
<jaxrs:server id="bookservice" address="/">
<jaxrs:serviceBeans all-beans="true">
</jaxrs:serviceBeans>
</jaxrs:server>
All spring components marked with @Path as it will be exposed
@Path( "/userService/" )
@Service("userService#rest")
public class DefaultUserService
implements UserService
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment