Application.xml not created in RAD7.5

I use RAD7.5 when creating an EAR project with level 5.0, I found that application.cml is not being created. Does it exist

+6
source share
2 answers

As mentioned in bkail, the DD number is optional in Java EE 5.0 (since it is heavily dependent on annotations).

If you want to explicitly create application.xml and other DDs, you can do this, and the toolkit will provide you with the tools to create and maintain them.

0
source

By default, the Generate Application.xml Deployment Descriptor check box is not checked when creating an enterprise application in Rational Application Developer in later versions of RAD. Check the box for Enterprise Application Settings. it can be added after the fact by choosing the Enterprise Project -> right click -> Java EE -> generate deployment descriptor Project -> right click -> Java EE -> generate deployment .

+6
source

Source: https://habr.com/ru/post/886649/


All Articles