https://github.com/mybatis/mybatis-3

sort by:
Revision Author Date Message Commit Date
893bdf1 [maven-release-plugin] prepare release mybatis-3.4.3 07 April 2017, 17:58:36 UTC
1d3ee88 Updated license headers. [ci skip] 07 April 2017, 00:29:54 UTC
f6f1882 Corrected Javadoc comments. Related to 4d900cf8884d79b64ff5922f2802c5343904dcf0 . [ci skip] 06 April 2017, 13:50:49 UTC
823cf2a Merge pull request #960 from jtjsir/master update the comment in this javafile 31 March 2017, 03:25:59 UTC
9fb7c69 update the comment in this javafile change the word 'form' to 'from' 31 March 2017, 02:34:20 UTC
e830385 Merge pull request #958 from Hartor/master Fixes typo : serlvet -> servlet 28 March 2017, 17:53:11 UTC
8fcd24d 修正156行中的serlvet为servlet 也绝不能将 SqlSession 实例的引用放在任何类型的管理作用域中,比如 Serlvet 架构中的 HttpSession。 servlet拼写错误 也绝不能将 SqlSession 实例的引用放在任何类型的管理作用域中,比如 Servlet 架构中的 HttpSession。 28 March 2017, 08:43:29 UTC
2db4338 Merge pull request #955 from Hartor/master 补充第49行代码 sqlSessionFactory前面缺少的类型声明 28 March 2017, 03:02:31 UTC
46d70fe 补充第49行代码 sqlSessionFactory前面缺少的类型声明 sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream); To SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream); 27 March 2017, 22:03:33 UTC
9547f04 Update to Mockito 2.7.19 Fix gh-954 24 March 2017, 15:08:25 UTC
3cea206 Update to CGLIB 3.2.5 Fix gh-953 24 March 2017, 15:07:38 UTC
ab7dc30 Update to SLF4J 1.7.25 Fix gh-952 24 March 2017, 15:06:19 UTC
75b6b13 Add javadoc at AutomapConstructor See gh-809 23 March 2017, 16:09:22 UTC
8bd0701 Merge pull request #948 from kazuki43zoo/gh-947_enumtypehandler-for-interface Support enum that implements multiple interfaces 16 March 2017, 06:45:21 UTC
54fe9da Support enum that implements multiple interfaces See gh-947 16 March 2017, 02:50:29 UTC
f3bd219 Allow registering a type handler for a common interface of enums. 15 March 2017, 19:03:22 UTC
4b465eb fixes #481 Looks for a matching statement defined in super interfaces recursively. Related to #35 . 12 March 2017, 10:01:00 UTC
4306af4 Fix typo (Chache -> Cache) 11 March 2017, 06:22:06 UTC
bc54c68 fixes #507 Added a simple (or vague) explanation about configurationFactory. Improvements are welcome! 10 March 2017, 19:49:27 UTC
283de23 Avoid re-wrapping ExecutorException. 10 March 2017, 19:30:34 UTC
e336223 refs #30 Added a test verifying the behavior when configurationFactory is not specified. 10 March 2017, 19:30:34 UTC
d7c3343 Re-formatted (no logical change). 10 March 2017, 19:30:25 UTC
e74f2bd Rewrote test for lazyLoadTriggerMethods setting. The old test wasn't working as intended. 10 March 2017, 18:21:32 UTC
e7dfe3b Corrected references to the deprecated classes. 10 March 2017, 17:53:11 UTC
2fe8e35 refs #721 The error message should include result map ID. 06 March 2017, 16:58:55 UTC
cc13c62 Merge pull request #935 from kazuki43zoo/update-ognl Update to OGNL 3.1.14 05 March 2017, 22:16:14 UTC
5783878 Update copyright year see gh-932 04 March 2017, 05:03:01 UTC
cd70a99 Add Chinese Translation. 02 March 2017, 03:49:28 UTC
2ab4a5f Update to OGNL 3.1.14 fix gh-934 01 March 2017, 14:49:20 UTC
66e1b99 Update to Mockito 2.7.12 fix gh-933 01 March 2017, 14:46:00 UTC
b3a92cd Update to SLF4J 1.7.24 fix gh-932 01 March 2017, 14:44:41 UTC
dc444cf Update copyright on file header 28 February 2017, 16:19:46 UTC
890214e Minor refactoring. 28 February 2017, 13:42:06 UTC
80de131 fixes #927 Avoid wrapper object being created for each element when adding an array to CacheKey. 28 February 2017, 13:42:06 UTC
ed2cc17 Merge pull request #926 from h3adache/master Fix for #903 25 February 2017, 02:04:18 UTC
06bee56 enable UPDATE JOIN statements 25 February 2017, 01:34:19 UTC
9783fb5 cleanup 25 February 2017, 01:28:16 UTC
586b0d2 Merge pull request #923 from h3adache/master Commits for #809 24 February 2017, 18:13:15 UTC
048e474 Renamed Constructor to AutomapConstructor to avoid confusion with Constructor class 24 February 2017, 18:07:23 UTC
45cc358 fixed bug if constructor objects don't match after primitives 23 February 2017, 16:46:52 UTC
135545d Allow annotating preferred annotation for #809 23 February 2017, 04:03:41 UTC
e54f65f Match constructors on primitive types not just their wrappers for #809 23 February 2017, 03:24:11 UTC
a07cb86 fix a translation mistake in sqlmap-xml.xml 19 February 2017, 11:59:06 UTC
7acd1c2 Update copyright year 14 February 2017, 22:29:38 UTC
080db72 Fix wrong registration logic for LanguageDriver fix gh-914 14 February 2017, 19:54:38 UTC
57540db Merge pull request #912 from danglotb/ampl-MetaObjectTest More coverage for org.apache.ibatis.reflection.MetaClass#buildProperty(String, StringBuilder) 08 February 2017, 16:17:24 UTC
a29e05e add assertion on findProperty 08 February 2017, 15:16:59 UTC
9d29135 fixes #526 `column` attribute expects comma separated column names when used with `foreignColumn` rather than the composite format (i.e. `{key1=val1,key2=val2,...}`). The if statement removed by this commit was added in cd60f405ea49b8de61c3fa1220b25e9403494a1d , but there was no test case and I am not sure what it was for. 04 February 2017, 16:51:08 UTC
27d37ce fixes #906 A boolean property should be able to have both isXxx() and getXxx() getter methods. 02 February 2017, 15:38:08 UTC
b4644c7 Minor refactoring. 27 January 2017, 15:20:48 UTC
1fe27a1 fixes #905 Invoking default method throws java.lang.IllegalAccessException if the mapper interface is not public. 25 January 2017, 18:06:28 UTC
f159236 Forgot to remove an unused annotation. Related to 6bbfc8146b992c4c25b9daaa7f1e854ddf776b06 . 25 January 2017, 17:47:39 UTC
8fc9474 refs #721 Updated documentation. 24 January 2017, 17:02:46 UTC
9095710 fixes #721 Allow specifying constructor arg by its parameter name. 24 January 2017, 14:30:55 UTC
39573e3 Refactoring ParamNameResolver. Moved Java 8 reflection classes to a new class with @UsesJava8. 24 January 2017, 14:23:54 UTC
d85233c Update license year 17 January 2017, 23:27:54 UTC
a5895f7 Improve contributing code for gh-895 17 January 2017, 18:06:58 UTC
978b922 unit test for avoiding unexpected automapping issue 17 January 2017, 14:48:19 UTC
fc73779 avoid unexpected automapping when a explicit mapped proerty has the same name as another column 17 January 2017, 14:48:19 UTC
3c91ef3 Applied the doc correction from the previous commit to the other languages. [ci skip] 13 January 2017, 17:30:55 UTC
ad65b4e correct the mapping resultType and Chinese garbled 13 January 2017, 17:30:55 UTC
1eba18d 'Post your question to ML' in Chinese 13 January 2017, 14:56:24 UTC
8fc78a7 Add tests for auto-detecting mybatis-typehandlers-jsr310 fix gh-879 05 January 2017, 18:50:05 UTC
7232c7e Improve to share Jdbc3KeyGenerator and NoKeyGenerator instance fix gh-882 03 January 2017, 12:14:36 UTC
9df831f [maven-release-plugin] prepare for next development iteration 02 January 2017, 09:02:06 UTC
44c0962 [maven-release-plugin] prepare release mybatis-3.4.2 02 January 2017, 09:01:56 UTC
3c9f435 Support auto-detecting YearMonthTypeHandler Fix gh-878 30 December 2016, 13:56:01 UTC
787b1cb Update to Mockito 2.4.2 fix gh-875 26 December 2016, 00:58:24 UTC
45cea61 Merge pull request #870 from msysyamamoto/fixtypo Fix typo 19 December 2016, 16:03:00 UTC
7dd05a3 Fix typo 19 December 2016, 14:11:16 UTC
3bcf467 Merge pull request #869 from wuwen5/logging-jdbc-unittest Add unit tests. 19 December 2016, 06:00:26 UTC
3d993ca Add unit tests. 19 December 2016, 04:34:50 UTC
656c726 Merge pull request #868 from hazendaz/master Update mockito and dates on license headers 18 December 2016, 20:23:10 UTC
d04d32c [pom] Update mockito to 2.3.7 18 December 2016, 20:13:18 UTC
6055e55 [ci] Update copyright dates on recently changed files 18 December 2016, 20:12:56 UTC
805235c [ci] Remove duplicate initializers 18 December 2016, 05:48:37 UTC
8a13d24 [pom] Update mockito to 2.3.0 18 December 2016, 05:48:36 UTC
80a655e [pom] Update slf4j to 1.7.22 18 December 2016, 05:48:36 UTC
c0ffe00 Revert "[test] Use mockito anyString instead of deprecated anyObject" This reverts commit 7ab1ebbd7b5405bed9d3d77ee4546987e27e3cb9. 18 December 2016, 05:07:40 UTC
977c863 [ci] Use proper imports instead of import all 18 December 2016, 05:00:16 UTC
7ab1ebb [test] Use mockito anyString instead of deprecated anyObject 18 December 2016, 04:59:56 UTC
d83b892 [ci] Remove incorrect set searialVersionUID 18 December 2016, 04:59:20 UTC
3e574ca [test] Fix memory leak 18 December 2016, 04:58:44 UTC
44035d7 squash unused import 18 December 2016, 04:58:20 UTC
586d0d4 [ci] Update deprecated jmockit runner 18 December 2016, 04:58:04 UTC
30dbf88 [ci] Remove unused imports 18 December 2016, 04:54:52 UTC
bb893a5 Memory usage optimization when parsing mapper files * Less object creation in GenericTokenParser. * Optimized <include /> resolution logic. 15 December 2016, 12:23:57 UTC
6792d47 Optimized <include /> resolution logic. 15 December 2016, 12:00:05 UTC
f4e9bfe Less object creation in GenericTokenParser. 15 December 2016, 11:59:56 UTC
ecc148e Minor optimization for enum type handler resolution. 08 December 2016, 15:51:55 UTC
f301c5a Optimization for #859 . Added test cases. 08 December 2016, 15:31:52 UTC
8e08100 Merge pull request #859 branch 'patch-1' of https://github.com/liyuj/mybatis-3 06 December 2016, 16:24:04 UTC
05a4210 Merge pull request #860 from hazendaz/master Update dependencies 03 December 2016, 03:39:17 UTC
ad858ca [pom] Update mockito-core to 2.2.26 03 December 2016, 03:33:31 UTC
46bdf41 [pom] Update clirr comparison to 3.3.1 03 December 2016, 03:33:30 UTC
3dd8597 TypeHandler support the recursive search. In some scenarios, need to define a generic typehandler for some custom types, so typehandler can be search in a recursive manner,is very valuable. 02 December 2016, 03:44:19 UTC
16bfb26 Merge pull request #858 from kazuki43zoo/fix-typo Fix typos in reference doc 01 December 2016, 15:06:38 UTC
7f77e72 Fix typos in reference doc fix gh-857 01 December 2016, 15:00:47 UTC
0be2866 Merge pull request #856 from kazuki43zoo/update-parent Update to mybatis-parent 28 28 November 2016, 17:26:48 UTC
24b23b3 Update to mybatis-parent 28 28 November 2016, 17:13:09 UTC
back to top