I am using JBoss Developer Studio. I have a project with persistence.xml file. The file is perfect for me, but I keep getting this error on a tab that lists all the problems of my project.
Class "[Ljava.lang.String;@22ec7158" cannot be resolved
I include an image for a better context.

When I click on the error, so that it takes me to where the error occurs, it returns me to the end of the file.
persistence.xml
<?xml version="1.0" encoding="UTF-8"?> <persistence version="2.1" xmlns="http://xmlns.jcp.org/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence http://xmlns.jcp.org/xml/ns/persistence/persistence_2_1.xsd"> <persistence-unit name="Persistence"> <provider>org.hibernate.ejb.HibernatePersistence</provider> <jta-data-source>java:jboss/datasources/MemberOfferDS</jta-data-source> <class>com.bbb.memberoffer.model.SycsCoordinator</class> <class>com.bbb.aicweb.memberoffer.model.SycsCoordinatorPhoneNumber</class> <class>com.bbb.memberoffer.model.SycsCoordinatorClub</class> <class>com.bbb.memberoffer.model.SycsCoordinatorSecurityGroup</class> <class>com.bbb.memberoffer.model.SycsCoordinatorClubPk</class> <class>com.bbb.memberoffer.model.PhoneNumberType</class> <class>com.bbb.memberoffer.model.Club</class> <exclude-unlisted-classes>true</exclude-unlisted-classes> <properties> <property name='hibernate.show_sql' value='true' /> <property name='hibernate.format_sql' value='true' /> <property name="hibernate.dialect" value="org.hibernate.dialect.SQLServerDialect"/> </properties> </persistence-unit> </persistence>
source share