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.
我在实体类中有以下内容
@Embedded @Valid private Address address = new Address();
如何为此创建 MySQL 数据类型?我是否必须创建一个用户定义的数据类型,其数据类型表示地址对象的类字段?
谢谢你。
你不能用 MySQL 创建你自己的类型。要实现您想要实现的目标,您需要先序列化您的对象,然后再将其添加到具有任何文本类型的数据库中。