Mybatis
文章平均质量分 63
cy913417
这个作者很懒,什么都没留下…
展开
-
Mybatis3 generator的使用附demo 及sqlserver 分页插件
网上找了好多关于Mybatis3 generator 自动化工具的教程 都说的很是含糊, 好吧 cmd什么的我实在不懂得敲。。。 详细的用法我已经在附件demo里体现了 。 这里需要注明的是 附件里的demo也是在网上找的demo基础上改的~ 添加了关于sqlserver 分页 插件 Mybatis generator的使用主要是 generatorConfig.xml配置文件的...原创 2011-12-30 17:13:04 · 388 阅读 · 0 评论 -
Mybatis 多个参数的传入
Mybatis 在传入多个参数的时候,可以选择传map对象,也可以选择定义接口 1,传map对象: public int updateByExampleSelective(Section record, SectionCriteria example) { SqlSession session=sessionFactory.openSession(); Map<Str...原创 2012-01-06 11:18:08 · 198 阅读 · 0 评论 -
Could not load JDBC driver class [com.microsoft.sqlserver.jdbc.SQLServerDriv
Spring的JDBCTemplate,产生了Exception in thread "main" org.springframework.jdbc.CannotGetJdbcConnectionException: Could not get JDBC Connection; nested exception is org.apache.commons.dbcp.SQLNestedExce...原创 2013-03-21 13:13:11 · 1604 阅读 · 0 评论 -
mybatis There is no getter for property named 'xxxx' in 'class java.lang.Integer
mybatis查询 是传参 报 There is no getter for property named 'xxxx' in 'class java.lang.Integer 这里是传入一个integer类型的参数,结果报上述异常 以下为sql写法: select top ${contentSize} MAX(PrimaryKeyId) as id FROM Content_T...原创 2012-09-12 15:07:17 · 218 阅读 · 0 评论