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.
我想将 xml 数据类型从 sql server 映射到使用 Java 休眠。我知道用户类型,但我不知道如何。
Hibernate 自动映射 SQL Server 中的 XML 数据类型。只需在您的 Java 类中使用一个字符串。
@Column(name = "my_xml_column") private String myXML;