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

关联查询时,可以left join 表,但没有连接表之间的语句。如下: select `employee`.firstname as firstname, `employee`.lastname as lastname, `employee`.email_address as email_address, `employee`.gender as gender, `employee`.constellation as constellation, `employee`.binary_data as binary_data, `employee`.last_modified_date as last_modified_date, `employee`.created_date as created_date, `employee`.last_modified_by as...

Querydsl is a framework that enables the construction of statically typed SQL-like queries through its fluent API. Spring Data Mybatis offer integration with Querydsl through QuerydslPredicateExecutor, as shown in the...

feature

Repository queries can be executed asynchronously using Spring’s asynchronous method execution capability. This means the method will return immediately upon invocation and the actual query execution will occur in a...

enhancement

I would like to avoid having to rewrite the whole JDBC/JAVA mapping in my xml mappers. Is there a way to inject (for example using a mybatis insert), the whole...

Is there an equivalent to `SELECT_CONDITION_INNER` in beforemappers so we can join table easily ? My use case is a custom condition that depend on another table. Thanks in advance,

MybatisRepositoryFactoryBean根据方法名生成动态SQL时,如何根据不同的包来生成不同方言的动态sql。

Support for multiple data sources use ``@DataSource`` annotation to determine which datasource will be use. ``@DataSource`` support Repository Class and Method level. If not assigned a ``@DataSource`` annotation will use...