File tree Expand file tree Collapse file tree 4 files changed +12
-3
lines changed
src/test/resources/generator Expand file tree Collapse file tree 4 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 14
14
15
15
![ MyBatis 从入门到精通] ( https://github.com/mybatis-book/book/raw/master/book.png )
16
16
17
- 预售地址 :[ 京东] ( https://item.jd.com/12103309.html ) ,[ 当当] ( http://product.dangdang.com/25098208.html ) ,[ 亚马逊] ( https://www.amazon.cn/MyBatis从入门到精通-刘增辉/dp/B072RC11DM/ref=sr_1_18?ie=UTF8&qid=1498007125&sr=8-18&keywords=mybatis )
17
+ 购买地址 :[ 京东] ( https://item.jd.com/12103309.html ) ,[ 当当] ( http://product.dangdang.com/25098208.html ) ,[ 亚马逊] ( https://www.amazon.cn/MyBatis从入门到精通-刘增辉/dp/B072RC11DM/ref=sr_1_18?ie=UTF8&qid=1498007125&sr=8-18&keywords=mybatis )
18
18
19
19
CSDN博客:http://blog.csdn.net/isea533/article/details/73555400
20
20
Original file line number Diff line number Diff line change 28
28
29
29
<groupId >tk.mybatis</groupId >
30
30
<artifactId >mapper</artifactId >
31
- <version >3.4.2 </version >
31
+ <version >3.4.3 </version >
32
32
<packaging >jar</packaging >
33
33
34
34
<name >mapper</name >
Original file line number Diff line number Diff line change 34
34
<plugin type =" tk.mybatis.mapper.generator.MapperPlugin" >
35
35
<property name =" mappers" value =" tk.mybatis.mapper.common.Mapper,tk.mybatis.mapper.hsqldb.HsqldbMapper" />
36
36
<property name =" caseSensitive" value =" true" />
37
+ <property name =" forceAnnotation" value =" true" />
37
38
<property name =" beginningDelimiter" value =" `" />
38
39
<property name =" endingDelimiter" value =" `" />
39
40
</plugin >
Original file line number Diff line number Diff line change 1
- #更新日志
1
+ # 更新日志
2
+
3
+ ## 3.4.3 - 2017-08-17
4
+
5
+ * ` MapperPlugin ` 增加 ` forceAnnotation ` 参数,默认 ` false ` ,设置为 ` true ` 后一定会生成` @Table ` 和` @Column ` 注解。
6
+ * 为实例化 ` TypeHandler ` 增加 ` javaTypeClass ` by ** junchao** 。
7
+ * 更新 ` Example ` 类,在获取 ` property ` 时,判断有没有该 ` property ` 并抛出异常 by ** chengcheng.feng** 。
8
+ * 所有类的属性从 ` HashMap ` 改为 ` ConcurrentHashMap ` 。
9
+
2
10
3
11
## 3.4.2 - 2017-07-19
4
12
You can’t perform that action at this time.
0 commit comments