У нас вы можете посмотреть бесплатно Implement a custom enum mapping with an AttributeConverter или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
JPA and Hibernate provide 2 standard options to map an Enum to a database column. You can either use its String representation or its ordinal value. But what do you do, if you need to map values from a legacy database that don’t match these standard mappings? Or if you don’t want to accept the drawbacks of the standard mapping? The String representation is verbose, and renaming an enum value requires you also to update your database. The ordinal of an enum value is its position in the enum declaration. This value changes and requires you to update your database when you remove an existing value or don’t add new values to the end of the enum declaration. In all these situations, you need to define a custom mapping. But no worries, that’s pretty easy since JPA 2.1 introduced AttributeConverter. If you like this video, please give it a thumbs up and share it with your friends and co-workers. Like my channel? Subscribe! ➜ http://bit.ly/2cUsid8 Join the free Member Library: https://goo.gl/dtyIIC Read the accompanying post: https://www.thoughts-on-java.org/jpa-... Want to connect with me? Blog: http://www.thoughts-on-java.org/ Twitter: / thjanssen123 Facebook: / thoughtsonjava #JPA #HIbernate #AttributeConverter #Tutorial