I get this error when working with mybatis generator configuration. So when I click on generatorConfig.xml and then click on โCreate Mybatis Artifactsโ. I get above errors
I am using java 1.7 and I installed that the installed java version is jdk1.7.0 and the jdk complie time is 1.7.
Unexpected error while running MyBatis Generator. com/mycom/myproject/db/mybatis/model/BaseModel : Unsupported major.minor version 51.0
Tables I use as follows
<table tableName="feed_entries" domainObjectName="Categories" modelType="conditional"> <property name="useActualColumnNames" value="false"/> <property name="rootClass" value="com.mycom.myproject.db.mybatis.model.BaseModel"/> <generatedKey column="id" sqlStatement="MySql" identity="true"/> </table>
Please let me know if anything else is required.
source share