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 データ型を作成するにはどうすればよいですか? Address オブジェクトのクラス フィールドを表すデータ型を使用して、ユーザー定義のデータ型を作成する必要がありますか?
ありがとうございました。
MySQL で独自の型を作成することはできません。達成したいことを行うには、オブジェクトをテキスト型でデータベースに追加する前に、オブジェクトをシリアル化する必要があります。