spring-data-mybatis icon indicating copy to clipboard operation
spring-data-mybatis copied to clipboard

Simplifies the development of creating a MyBatis-based data access layer.

Results 29 spring-data-mybatis issues
Sort by recently updated
recently updated
newest added
trafficstars

I am using capital case for our table names and column names. I had to write this in order to get the proper query value: @JoinTable( name = "LINK_MANAGER_ROLE", joinColumns...

version: 3.0.0-SNAPAHOT @GeneratedValue is not supported now, plz upgrade

version: 3.0.0-SNAPAHOT 1. insert entity to Mysql by SimpleMybatisRepository.insert in Entity class: @jakarta.persistence.Column(name = "tenant_id") private String tenantId; what i do: repository.insert(entity); Exception: Cause: java.sql.SQLSyntaxErrorException: Column 'tenant_id' specified twice 2....

version: 3.0.0-SNAPAHOT MybatisEntityManagerAutoConfiguration not running because MybatisRepositoryConfigExtension is be registered in RepositoryConfigurationUtils:63

spring-data-mybatis requires the namespace in mapper.xml should reference to DO but not Repository, it breaks the feature of some plugins in IDEA that can jump to mapper.xml from Repository please...