
3、框架
再远不过PC
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Mybatis id自增,插入数据后返回id
insert into tb_manager values(null,#{userName},#{password}) 返回值为插入数据后的id 参考博客原创 2017-06-05 19:18:44 · 1388 阅读 · 0 评论 -
Cause: java.sql.SQLException: Connection is read-only. Queries leading to data modification are not
Cause: java.sql.SQLException: Connection is read-only. Queries leading to data modification are not allowed ; SQL []; Connection is read-only. Queries leading to data modification are not allowed; ne原创 2017-06-18 10:34:45 · 1479 阅读 · 0 评论 -
mybatis中的#和$的区别?
1. #将传入的数据都当成一个字符串,会对自动传入的数据加一个双引号。如:order by #user_id#,如果传入的值是111,那么解析成sql时的值为order by "111", 如果传入的值是id,则解析成的sql为order by "id". 2. $将传入的数据直接显示生成在sql中。如:order by $user_id$,如果传入的值是111,那么解析成sql时的转载 2017-06-02 21:25:52 · 333 阅读 · 0 评论 -
org.springframework.beans.factory.BeanCreationException: Error creating bean with name
SSM组合框架,启动时报错 错误报告: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'systemsetController': Injection of resource dependencies failed; nested exception is org.s原创 2017-06-02 23:39:58 · 1404 阅读 · 0 评论 -
springMVC 接受对象 The request sent by the client was syntactically incorrect.
在接受对象的时候,The request sent by the client was syntactically incorrect. 在接受对象里有个date类,如要date的时候,与springMVC中的机制不相符 在controller类中加入这个。 @InitBinder public void InitBinder(ServletRequestDataBinder原创 2017-06-03 15:39:00 · 494 阅读 · 0 评论