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.
因此,您正在 GMaven 中编写一个带有一些 Java 的 groovy 脚本。在源标签之间:
<source> ...some groovy code here List<Chicken> = new ArrayList<>() ...some more groovy code here </source>
问题 < 和 > 看起来像 XML 标记组件。有没有办法逃避这些,如果是这样,那是什么?
将代码嵌套在 CDATA 中。
看看这个:http ://www.w3schools.com/xml/xml_cdata.asp
是的,您可以使用 XML/HTML 实体对它们进行转义
List<Chicken> = new ArrayList<>()
参考: XML 和 HTML 字符实体参考列表