Я работаю над отображением таблицы в POJO с помощью весенней загрузки, и получаю следующую ошибку:
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in class path resource [com/mercadolibre/linters/db/config/DbaConfig.class]: Invocation of init method failed; nested exception is javax.persistence.PersistenceException: [PersistenceUnit: default] Unable to build Hibernate SessionFactory; nested exception is org.hibernate.tool.schema.spi.SchemaManagementException: Schema-validation: wrong column type encountered in column [linter_summary] in table [result]; found [json (Types#CHAR)], but expecting [varchar(255) (Types#VARCHAR)]
поле linter_summary
в БД имеет тип JSON и на моемPojo это строкаЯ не понимаю, почему он делает эту ошибку, есть ли в java специальная переменная для полей JSON?