我是初学springMVC,与hibernate一起用,现在遇到以下问题,点击表单提交时就出现这个问题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了我是初学springMVC,与hibernate一起用,现在遇到以下问题,点击表单提交时就出现这个问题相关的知识,希望对你有一定的参考价值。
严重: Servlet.service() for servlet dispatcherServlet threw exception
line 1:1: unexpected token: form
at org.hibernate.hql.antlr.HqlBaseParser.statement(HqlBaseParser.java:171)
at org.hibernate.hql.ast.QueryTranslatorImpl.parse(QueryTranslatorImpl.java:238)
at org.hibernate.hql.ast.QueryTranslatorImpl.doCompile(QueryTranslatorImpl.java:155)
at org.hibernate.hql.ast.QueryTranslatorImpl.compile(QueryTranslatorImpl.java:109)
网络上说可能是HQL语句出错,可是我不管执不执行HQL语句(插入时没有HQL语句)都不行
还有spring代替MVC这说法你自己想出来的吧?
呵呵,这个spring不是这样用的
如何使用啊?怎么注入。。注入到哪啊?
这个就要你重载下hibernateDaoSupport,这样分页就更方便了,还可以用hibernate的方法
看这个
public class MyHibernateDaoSupport extends HibernateDaoSupport
@Resource(name="sessionFactory")
public void setSuperSessionFactory(SessionFactory sessionFactory)
super.setSessionFactory(sessionFactory);
/**
* 使用hql 语句进行分页查询操作
* @param hql 需要查询的hql语句
* @param offset 第一条记录索引
* @param pageSize 每页需要显示的记录数
* @return 当前页的所有记录
*/
public List findByPage(final String hql,
final int offset, final int pageSize)
List list = getHibernateTemplate().executeFind(new HibernateCallback()
public Object doInHibernate(Session session)
throws HibernateException, SQLException
List result = session.createQuery(hql)
.setFirstResult(offset)
.setMaxResults(pageSize)
.list();
return result;
);
return list;
这个是一个办法,我都这样用,用的是spring2.5,hibernate3.2,如果你用spring2.0你可以把这个换掉@Resource(name="sessionFactory")换成setter方法!
其他的就在spirng.xml文件中配置就行
整合的时候就extends MyHibernateDaoSupport 这样就行了,这样就可以用分页的方法了,当然上面的方法我自己写的,你也可以自己修改,怎么样写都成!
参考技术B 启动报错,100%肯定是配置问题
你把spring的配置文件贴出来,还有web.xml贴出来。
然后看你具体的hiberante是怎么和spring 整合的。追问
applicationContext.xml文件
/show.jsp
web.xml
dispatcherServlet
*.h
是在表单提交时报错,由于内容太长,只粘贴了一部分
springmvc4+hibernate4分页查询功能
Springmvc+hibernate成为现在很多人用的框架整合,最近自己也在学习摸索,由于我们在开发项目中很多项目都用到列表分页功能,在此参考网上一些资料,以springmvc4+hibnerate4边学边总结,得出分页功能代码,虽然不一定通用,对于初学者来说有参考价值。
分页实现的基本过程:
一、分页工具类
思路:
- 编写Page类,定义属性,应该包括:查询结果集合、查询记录总数、每页显示记录数、当前第几页等属性。
- 编写Page类,定义方法,应该包括:总页数、当前页开始记录、首页、下一页、上一页、末页等方法
代码如下:
package cn.myic.model; import java.util.List; public class Page<E> { // 结果集 private List<E> list; // 查询记录总数 private int totalRecords; // 每页多少条记录 private int pageSize; // 第几页 private int pageNo; /** * @return 总页数 * */ public int getTotalPages(){ return (totalRecords+pageSize-1)/pageSize; } /** * 计算当前页开始记录 * @param pageSize 每页记录数 * @param currentPage 当前第几页 * @return 当前页开始记录号 */ public int countOffset(int currentPage,int pageSize){ int offset = pageSize*(currentPage-1); return offset; } /** * @return 首页 * */ public int getTopPageNo(){ return 1; } /** * @return 上一页 * */ public int getPreviousPageNo(){ if(pageNo<=1){ return 1; } return pageNo-1; } /** * @return 下一页 * */ public int getNextPageNo(){ if(pageNo>=getBottomPageNo()){ return getBottomPageNo(); } return pageNo+1; } /** * @return 尾页 * */ public int getBottomPageNo(){ return getTotalPages(); } public List<E> getList() { return list; } public void setList(List<E> list) { this.list = list; } public int getTotalRecords() { return totalRecords; } public void setTotalRecords(int totalRecords) { this.totalRecords = totalRecords; } public int getPageSize() { return pageSize; } public void setPageSize(int pageSize) { this.pageSize = pageSize; } public int getPageNo() { return pageNo; } public void setPageNo(int pageNo) { this.pageNo = pageNo; } }
二、Dao层方法
思路:定义一个分页查询的方法,设置参数:当页页号和每页显示多少条记录
代码如下:
/** * 分页查询 * @param hql 查询的条件 * @param offset 开始记录 * @param length 一次查询几条记录 * @return 返回查询记录集合 */ @SuppressWarnings("unchecked") @Override public List<Course> queryForPage(int offset, int length) { // TODO Auto-generated method stub List<Course> entitylist=null; try{ Query query = getSession().createQuery("from Course"); query.setFirstResult(offset); query.setMaxResults(length); entitylist = query.list(); }catch(RuntimeException re){ throw re; } return entitylist; }
三、Service层方法
思路:
- 定义一个分页查询的方法,设置参数:当页页号和每页显示多少条记录,返回查询结果的分页类对象(Page)
- 通过Dao层,获取查询实体的总记录数
- 获取当前页开始记录数
- 通过Dao层,获取分页查询结果集
- Set入page对象
代码如下:
/** * 分页查询 * @param currentPage 当前页号:现在显示的页数 * @param pageSize 每页显示的记录条数 * @return 封闭了分页信息(包括记录集list)的Bean * */ @SuppressWarnings("unchecked") @Override public Page queryForPage(int currentPage,int pageSize) { // TODO Auto-generated method stub Page page = new Page(); //总记录数 int allRow = courseDao.getAllRowCount(); //当前页开始记录 int offset = page.countOffset(currentPage,pageSize); //分页查询结果集 List<Course> list = courseDao.queryForPage(offset, pageSize); page.setPageNo(currentPage); page.setPageSize(pageSize); page.setTotalRecords(allRow); page.setList(list); return page; }
四、Controller层方法
Controller层的设计,操作翻页查询时,只需要传递当前页号参数即可。
代码如下:
@RequestMapping(value = "/showAll.do") public String findAllCourse(HttpServletRequest request, HttpServletResponse response) { try { String pageNo = request.getParameter("pageNo"); if (pageNo == null) { pageNo = "1"; } Page page = courseService.queryForPage(Integer.valueOf(pageNo), 10); request.setAttribute("page", page); List<Course> course = page.getList(); request.setAttribute("courses", course); } catch (Exception e) { e.printStackTrace(); } return "course/course_list"; }
五、View层jsp展示
jsp页面分页的几个按钮,根据当前页号的判断显示。
代码如下:
<tr> <td colspan="6" align="center" bgcolor="#5BA8DE">共${page.totalRecords}条记录 共${page.totalPages}页 当前第${page.pageNo}页<br> <a href="${path}/course/showAll.do?pageNo=${page.topPageNo }"><input type="button" name="fristPage" value="首页" /></a> <c:choose> <c:when test="${page.pageNo!=1}"> <a href="${path}/course/showAll.do?pageNo=${page.previousPageNo }"><input type="button" name="previousPage" value="上一页" /></a> </c:when> <c:otherwise> <input type="button" disabled="disabled" name="previousPage" value="上一页" /> </c:otherwise> </c:choose> <c:choose> <c:when test="${page.pageNo != page.totalPages}"> <a href="${path}/course/showAll.do?pageNo=${page.nextPageNo }"><input type="button" name="nextPage" value="下一页" /></a> </c:when> <c:otherwise> <input type="button" disabled="disabled" name="nextPage" value="下一页" /> </c:otherwise> </c:choose> <a href="${path}/course/showAll.do?pageNo=${page.bottomPageNo }"><input type="button" name="lastPage" value="尾页" /></a> </td> </tr>
页面效果:
以上是关于我是初学springMVC,与hibernate一起用,现在遇到以下问题,点击表单提交时就出现这个问题的主要内容,如果未能解决你的问题,请参考以下文章
Spring+Springmvc+Hibernate环境搭建与配置
没有为依赖找到类型 [org.hibernate.SessionFactory] 的匹配 bean
struts2+springmvc+hibernate开发。个人纪录