Reputation: 10004
When I use eclipse to generate jaxb classes and Webservice implementation by top down approach. eclipse automatically generates csf-beans.xml. However wsdl1java maven plugin doesnot generate config file. Is there are options available to plugin to enable generation of bean configuration file?
Upvotes: 0
Views: 865
Reputation: 601
No! There isn't any option for generating cxf configuration file with wsdl2java
maven plugin. You can get and customize the general cxf.xml
file from Apache CXF Configuration and add it to the /WEB-INF/classes
folder of your web application.
Hope this helps.
Upvotes: 2