Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
maven-jaxb2-plugin 有什么用?它是用来从 xsd 生成 java 类的吗?它从 xsd 生成什么样的类?
maven-jaxb2-plugin
谢谢!
最常见的用途是基于soap的webservices,SOAP webservices暴露了WSDL并定义了webservices中使用的类的模式
例如:
public void sayHello(Person person){}
现在客户端需要使用客户端从 WSDL 中知道的实例来调用它,Person并且这个插件有助于生成这些类
Person
是的,它从 XSD 生成带有 JAXB 注释的 POJO。