ajax - Using a 2.1 EJB for a ReST Service -
i have 2.x stateless session ejb rest service using jersey.
@path("/foo) public class fooejb...{ @get @produces({mediatype.application.json}) public arraylist getalist(){ } }
the ejb deployed in weblogic. weblogic manage session bean, , control how many instances made? i'm using ajax call populate dropdown. idea, or should use pojo? not using, , cannot use, spring.
with java ee 5, cannot implement rest resources stateless session beans (that's possible since java ee 6).
Comments
Post a Comment