- 博客(6)
- 收藏
- 关注
原创 关于在linux上装mysql8.0的一些小细节
http://baijiahao.baidu.com/s?id=1584072431498789934&wfr=spider&for=pc上面是在linux上装mysql5.7的步骤,一直下来都没什么两样。但是,第十五步开始了。mysql8.0可能一些新的特性,如果要授权远程登录用grant语句时会报错,如下图用navicat尝试连接时也会显示报错这时候只能用另一种方法,就是把my...
2018-05-19 14:12:23 837
原创 用spring和web整合时加载页面出现报错The server encountered an internal error that prevented it from fulfilling thi
用spring和web整合时加载页面出现报错,如图下所示:打开Tomcat启动日志看看发现提示如图:就是说tomcat服务器没有加载到spring.XML配置文件仔细查找了一下原因,原来我的web.xml文件放在了WebContent的目录下,所以没有加载得到web.xml,这样当然也没有加载得到spring.xml把web.xml重新放回到WEB-INF目录下重启tomcat服务器就可以了虽然不...
2018-04-20 21:23:55 943
原创 使用hibernate框架时出现异常No CurrentSessionContext configured!
使用hibernate框架时出现异常No CurrentSessionContext configured! 因为可能你的HibernateUtil.java封装getSession()方法时使用的是sessionFactory.getCurrentSession(); 把它改成sessionFactory.openSession(); 或者在hibernate.cfg....
2018-04-15 00:50:14 901
原创 使用spring框架时抛出异常Error creating bean with name ‘session‘ defined in class path resource [spring.xml]:
使用spring框架时抛出异常Error creating bean with name 'session' defined in class path resource [spring.xml]:Bean instantiation via factory method failed; nested exception is java.lang.ExceptionInInitializ...
2018-04-14 14:00:02 1094 1
原创 用SSH时几个增删查改操作后跳转不回列表页面(原因在连接池)
一开始在配置hibernate.cfg.xml时我忘了注释掉下面连接池的代码,所以在两个任意增删查改操作后便不能跳转回页面,注释掉后就可以了。不过这些小细节以后要注意一下就好<property name="hibernate.connection.provider_class">org.hibernate.connection.C3P0ConnectionProvider</pr...
2018-04-07 18:26:16 209
原创 用SSH时出现报错:id to load is required for loading
原因关于ssh中模型驱动我在用edit方法时没有加上判断条件页面传来的id是否为空值:如下面代码:public String edit(){ book = bookService.getBookById(id); return "success"; }所以添加功能的时候就会出现报错把代码改成如下:public String edit(){ if(id != null &...
2018-04-07 17:54:58 636
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人