码迷,mamicode.com
首页 > Web开发 > 详细

Hibernate+struct web项目问题总结

时间:2018-06-11 23:42:00      阅读:331      评论:0      收藏:0      [点我收藏+]

标签:解决办法   odi   coding   hbm.xml   路径   hiberna   utf-8   not   app   

问题一:

 ClassTable is not mapped [from ClassTable]

解决办法:在添加资源路径

<mapping resource="***/***/***/***/ClassTable.hbm.xml"/>

***为包名

问题二:写删除功能时jsp传ID值到action中,由于含有中文导致乱码,设置request.setCharacterEncoding("UTF-8");也无济于事,

解决办法:

String Cid = new String(request.getParameter("Cid").getBytes("iso-8859-1"),"UTF-8");

将传过来的值通过转码解决

Hibernate+struct web项目问题总结

标签:解决办法   odi   coding   hbm.xml   路径   hiberna   utf-8   not   app   

原文地址:https://www.cnblogs.com/ttzz/p/9170382.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!