Grails:将 XML 值存储在数据库中
有没有办法将域对象的某些属性存储在数据库中,而不是将它们存储为字符串?
即
class Document
{
String name
Node value
}
代替:
class Document
{
String name
String value
}
Is there any way to store some properties of domain object in database instead of storing them as strings?
i.e.
class Document
{
String name
Node value
}
instead of:
class Document
{
String name
String value
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
读取 XML 并将值存储在数据库中的示例
以下是使用 grails Employee info xml 文件
:读取并保存在 Employee 表中:
Here is an example of reading from XML and storing the values in database using grails
Employee info xml file:
Read and save in Employee table :