Skip to content

Instantly share code, notes, and snippets.

@sejersbol
Created February 26, 2011 08:19
Show Gist options
  • Save sejersbol/845045 to your computer and use it in GitHub Desktop.
Save sejersbol/845045 to your computer and use it in GitHub Desktop.
Simple web service with injected stateless bean.
@WebService
public class Ws {
@Inject SpeakQuery bean;
@WebMethod
public String sayHelloSlow(String name) throws Exception {
return bean.sayHello(name);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment