摘要:
新建一个拦截器类,实现 org.springframework.web.servlet.HandlerInterceptor 接口,重写preHandle、postHandle、afterCompletion方法分别是处理前、处理中、处理后。 public class RequestIntercep 阅读全文
摘要:
“Could not autowire. No beans of 'UserMapper' type found”,今天遇到的一个问题记录一下吧! 我是因为扫描包的顺序有问题,如下图, 先扫描了controller和service,结果service里面又注入了dao但是这时候dao还没有被扫描到所 阅读全文
摘要:
填充条形图: 我这说的固定的意思是要展示的字段是已知的,动态的是接受到的后台返回的json然后遍历动态加载。 1.固定值 function xmhtCountByMonthBar(data){ var dom = document.getElementById("xmhtCountByMonthBa 阅读全文
摘要:
sql错误:不允许主机“*.*.*.*连接到mysql服务器。 解决: mysql -uroot -p;//键入密码进入你的数据库 use mysql; select host,user,password from user where host='localhost' and user='root 阅读全文