SSM
chicheese
这个作者很懒,什么都没留下…
展开
-
SSM框架的那点事
在用SSM框架开发的时候会遇到写增删改查的SQL语句,在这四种需求中可以分为两类,查询是一类,增删改合起来分为一类,在数据库查询的时候,能按照我们想要的条件查询出我们需要的数据出来,这时候我们需要添加一个resultType需要注意一点的是 where 后面的条件是根据dao层中的接口的参数来的这里只有一个参数,where后面的条件也就只有一个了,再添加其他条件就会报空指针错误,因为没有其他条件了...原创 2018-03-07 00:10:47 · 321 阅读 · 0 评论 -
SSM框架使用mybatis分页插件PageHelper体会
最近要做个分页功能,看到了Mybatis的分页插件PageHelper这个工具,使用非常的简单,但是在使用的过程中遇到了不少的坑,因为封装的完美,你使用的过程中只要几句代码就可以实现分页了,这是自己的体会。好了,下面开始分享我使用的方法以及一些坑。一. 先在pom.xml文件中加入PageHelper依赖。<!-- https://mvnrepository.com/...原创 2018-04-26 19:52:30 · 1773 阅读 · 2 评论 -
Java后台审核和提现功能(Vue为前端)
其实审核功能是一个更新的功能,更新审核状态就好了,做法也很简单.1.前端代码<el-popover placement="top" width="160" v-model="scope.row.visible1"> <p style="margin-left: 35px;">审核是否通过?</p> <div style="t...原创 2018-08-02 21:12:39 · 9083 阅读 · 2 评论 -
SSM+Shiro 配置文件报错问题
在配置SSM+Shiro 项目的 spring-shiro.xml 文件时会报ERROR o.s.web.context.ContextLoader [ContextLoader.java:351] - Context initialization failedorg.springframework.beans.factory.BeanCreationException: Error cr...原创 2018-09-17 14:30:49 · 1076 阅读 · 0 评论 -
使用MyBatis框架遇到There is no getter for property named 'param' in 'class com.vo.ParamVO'
有时候在写完代码之后,运行程序会碰到一些让人觉得奇怪的问题,也是需要对框架去多多了解,下面遇到的也是一个经常会遇到问题。严重: Servlet.service() for servlet [springMVC] in context with path [/MA_IBA] threw exception [Request processing failed; nested exception ...原创 2019-01-08 10:22:52 · 3182 阅读 · 0 评论 -
java.sql.SQLException: The server time zone value '???ú±ê×??±??' is unrecognized or represents more
1、报错信息:java.sql.SQLException: The server time zone value '???ú±ê×??±??' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTim...原创 2019-05-16 15:25:31 · 435 阅读 · 0 评论