java - What is the purpose of the "client ejb" module that can be generated when creating an ejb project? -
as title says, search can't figure out purpose of th "ejb client" module can generated when creating ejb project , give me tip? thanks
quoting netbeans ide documentation:
a java ee application client stand-alone application configured work part of java ee enterprise application. java application can access remote ejb methods , web services, not have create java ee application client access enterprise application. advantage of accessing enterprise applications enterprise application clients application clients have access services , functionality running on enterprise application server, while regular java applications not. example, can configure security roles , permissions enterprise application client.
so it's regular java application can run inside application server, accessing ejbs, in plain java standalone applications, application server services.
Comments
Post a Comment