-
## Description
We update MyBatis3.3 on 5.0.x.
https://github.com/terasolunaorg/guideline/issues/1384
For back compatibility, it is necessary to configure to use CGLIB explicitly instead of JAVASSIST …
-
## Description
We update MyBatis3.3 on 5.0.x.
https://github.com/terasolunaorg/guideline/issues/1384
For back compatibility, it is necessary to configure to use CGLIB explicitly instead of JAVASSIST …
-
## Description
We update MyBatis3.3 on 5.0.x.
https://github.com/terasolunaorg/guideline/issues/1384
For back compatibility, it is necessary to configure to use CGLIB explicitly instead of JAVASSIST …
-
Can mybatis support a list or an array as a parameter and there is no need to use ?
For example:
SQL:select name from my_table where id in (#{idList})
-
Current SelectProvider support use paramObject as arg and return String as result.
```
String sql(paramObject)
```
I hope it can support :
```
[String|SqlNode] sql([paramObject, [mappedStatement]])…
-
## Description
We update MyBatis3.3 on 5.0.x.
https://github.com/terasolunaorg/guideline/issues/1384
For back compatibility, it is necessary to configure to use CGLIB explicitly instead of JAVASSIST …
-
```
MyBatis3 no longer need to write the interface implementation class, like below
so:
public interface UserDao {
@ReadThroughSingleCache(namespace = "user", expiration = 3600)
@Select(va…
-
## Description
Support https://github.com/terasolunaorg/terasoluna-gfw/issues/436
## Affects Version/s
N/A
## Fix Version/s
- [x] 5.1.0_JPA
- [x] 5.1.0_MyBatis3
## Issue Links
N/A
-
```
MyBatis3 no longer need to write the interface implementation class, like below
so:
public interface UserDao {
@ReadThroughSingleCache(namespace = "user", expiration = 3600)
@Select(va…
-
Dear pioneer,
```
How to avoid non-English word's messy code in mapper.xml?
```
SS+Mybatis3's default query and mapping can avoid non-English word's messy code from DB
and to DB, but when I write so…