java - Standard Deployment EJB app -
is there standardized format deploy ejb apps on application servers ?
i created jar file .class files of app , defaulf manifest , copied deployments directory of jboss v7.1 , deployed fine. i've read needed deployment descriptor, did not use in deployment.
i mean war files, used deploy jee web apps have,i think, standard format , structure, exsist similar standard deploy ejb apps ?
thanks
yes, there standard format, defined in java ee specification. if you're planning on deploying ejbs within application, need generate ear file contain various modules within application.
see packaging applications under java ee 6 tutorial more information.
Comments
Post a Comment