maven-cxf-codegen-plugin using Jaxb binding to add inheritance for all generated classes
问题 I am using Apache CXF's cxf-codegen-plugin to turn a wsdl into java objects. I specified a binding file to add additional jaxb processing. I want all of these files to inherit from an interface (or extend an abstract class). My problem is that while I can get this to work with one generated file using <jaxb:bindings node="xsd:complexType[@name='sampleObj'] "> <inheritance:implements>example.Dao</inheritance:implements> </jaxb:bindings> which will make sampleObj implement example.Dao. I do not