spring mvc-springmvc查询,同一页面显示查询结果

问题描述

springmvc查询,同一页面显示查询结果

查询页面,刚开始显示所有记录,点击查询然后同一页面显示查询结果,已经查询到结果但是不显示在页面
刚开始页面uploadWithPage

点击查询后

查询代码:

    @RequestMapping(value="/searchByFileName",method=RequestMethod.GET)
    public ModelAndView searchByFilename(@RequestParam String filename)
    {
        ModelAndView modelAndView=new ModelAndView("user/uploadWithPage");
        Page<Upload> upload=uploadService.findUploadByFileName(filename,0,10);
        List<Upload> u = upload.getContent();
        modelAndView.addObject("upload",u);
        return modelAndView;
    }

解决方案

你现在是想不设置参数,默认查全部是吧?出现这种情况估计是传参数错了,仔细看看你数据苦操作的dao层中,有没有过滤掉“ ”这样的空白字符

时间: 2025-01-30 11:32:06

spring mvc-springmvc查询,同一页面显示查询结果的相关文章

mysql-编写JSP页面查询数据库不显示查询的结果

问题描述 编写JSP页面查询数据库不显示查询的结果 <% try{ Class.forName("com.mysql.jdbc.Driver"); Connection conn=DriverManager.getConnection("jdbc:mysql://localhost:3306/test2", "root","xiaojuan00"); Statement stat=conn.createStatement

spring mvc 问题请教 controller 页面参数

问题描述 spring mvc 问题请教 controller 页面参数 操作的实体contact(联系人) ContactController 里面有两个方法: // "/contact" 是默认调用的处理方法 @RequestMapping(method = RequestMethod.GET) public String list( @RequestParam(value = "page", defaultValue = "1") int

spring mvc 执行后tomcat总是显示 No mapping....为什么???

问题描述 spring mvc 执行后tomcat总是显示 No mapping....为什么??? 为什么总是出现下图的问题,该怎么解?? 解决方案 Spring 3 MVC No mapping found for HTTP request with URI (转)spring mvc No mapping found for HTTP request with URI [] in DispatcherServletSpring MVC No mapping found for HTTP r

Spring MVC笔记 添加错误页面

使用Spring MVC的Web项目,可以使用DispatcherServlet来指定异常页面,下面是具体的配置: 在Spring配置文件中配置: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 <?xml version="1.0" encoding="UTF-8" ?> <beans xmlns="http://www.springf

spring MVC中定义异常页面

如果我们在使用Spring MVC的过程中,想自定义异常页面的话,我们可以使用DispatcherServlet来指定异常页面,具体的做法很简单: 下面看我曾经的一个项目的spring配置文件: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 <?xml version="1.0" encoding="UTF-8" ?> <beans xmlns=

j2me 获取参数 查询 数据库后显示查询后的信息,各位大虾帮下小弟啊,先谢啦

问题描述 服务器端代码:publicclasstableextendsHttpServlet{privatestaticfinallongserialVersionUID=1L;publictable(){//TODOAuto-generatedconstructorstub}protectedvoiddoGet(HttpServletRequestrequest,HttpServletResponseresponse)throwsServletException,IOException{//T

怎么样使用Spring MVC 将页面放到不同的路径之下?

问题描述 小弟最近在学习Spring MVC,发现将所有的JSP页面放到同一个路径之下的话,页面会非常的多,看起来非常不好,我现在想让不同模块的JSP页面放到不同的路径之下.我Spring MVC配置文件中对于页面配置如下:<!-- 定义Spring MVC 的模板文件 --> <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewRes

servlet-spring mvc项目访问jsp页面出错

问题描述 spring mvc项目访问jsp页面出错 严重: Servlet.service() for servlet jsp threw exception java.lang.ArrayIndexOutOfBoundsException at java.lang.System.arraycopy(Native Method) at org.gjt.xpp.impl.tokenizer.Tokenizer.next(Tokenizer.java:1274) at org.gjt.xpp.im

jsp-JSP,MVC查询外键所在表中的其他内容并放入list中在前台页面显示数据

问题描述 JSP,MVC查询外键所在表中的其他内容并放入list中在前台页面显示数据 VO中的字段 Emp private String id; private String e_id; private String e_head; private String e_name; private String e_sex; private Dep d_id; private String e_tell; private String e_address; Dep private String d_