有人告诉我,groovy xml解析器更好更容易,我的问题是如何在java中使用groovy来解析xml文件并将其放在pojo对象中? 感谢。
答案 0 :(得分:1)
Groovy编译器有一个名为" joint-compilation"的功能。这用于与另一个java项目编译groovy项目。它在其网站中定义为
Joint compilation means that the Groovy compilation will parse the Groovy source files, create stubs for all of them, invoke the Java compiler to compile the stubs along with Java sources, and then continue compilation in the normal Groovy compiler way. This allows mixing of Java and Groovy files without constraint.
但问题是,随着项目代码库的增加,它会导致静态引用出现一些问题。如果您使用Maven编译代码或使用Ant脚本,那么生活将变得更加容易。
参考链接:http://groovy.codehaus.org/The+groovyc+Ant+Task
您还可以查看此链接http://today.java.net/pub/a/today/2004/08/12/groovyxml.html,其中用户尝试了很多选项,包括Groovy。