問題タブ [jaxb2-simplify-plugin]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票する
1 に答える
577 参照

java - JAXB 2.1 実装 Comparable生成されたクラス

  • Jaxb 2.1 を使用して .xsd から Java コードを生成する
  • Jaxb2-basics プラグインを使用
  • Comparable を実装する Class Student を生成したい。

    public class Student implements Serializable, Comparable<Students> { ... //bean class... public int compareTo(Student other) { ..... return somevalue; } }


XSD:


プラグイン:


エラー: ディレクトリ内のスキーマ ファイルを処理できませんでした

Unable to parse input schema(s). Error messages should have been provided. (org.jvnet.jaxb2.maven2:maven-jaxb2-plugin:0.13.3:generate:default:generate-sources)org.apache.maven.plugin.MojoExecutionException: Unable to parse input schema(s). Error messages should have been provided. at org.jvnet.mjiip.v_2_2.XJC22Mojo.loadModel(XJC22Mojo.java:55) at org.jvnet.mjiip.v_2_2.XJC22Mojo.doExecute(XJC22Mojo.java:40)

私は何かが欠けています。解決するための助けをいただければ幸いです。