persisting hyperjaxb-generated entities to mysql from eclipse

后端 未结 1 663
感动是毒
感动是毒 2021-01-27 07:08

I am setting up hyperjaxb to run in eclipse using this tutorial. So far, I have gotten it to marshal and unmarshal, but it does not yet t

相关标签:
1条回答
  • 2021-01-27 07:40

    For your immediate problem: if Main.java resides in src/main/java and needs to call TestFunctions.java, then normal Maven development would put TestFunctions.java in src/main/java and not src/test/java. (It's generally a bad idea to have your "real" code, the stuff in src/main, depending on anything in src/test).

    0 讨论(0)
提交回复
热议问题