使用spring mvc前台获取后台返回的List

本文介绍了如何在Spring MVC项目中,通过配置web.xml和控制器方法,实现在欢迎页面加载时从后台数据库获取数据并显示。使用@SessionAttributes注解将List存入session,便于在多个页面访问。在页面中通过EL表达式${}遍历session中的list进行展示。
摘要由CSDN通过智能技术生成

在web的开发中,我们经常会用到在欢迎页面加载的同时,也会查询后台的数据将其显示在页面上,这里有一个办法我们可以尝试一下。

假如我想在一进入欢迎页面的时候就显示后台数据库中事先存放好的数据,那么我们可以这样做:

将action写在web.xml中:

    <welcome-file-list>  
        <welcome-file>/categories/queryCates.do</welcome-file>  
    </welcome-file-list>  

这里不要直接写欢迎页面,而将其移至控制器的返回值中。

在控制器中添加action对应的方法:


package com.pro.controller;

import com.pro.pojo.Category;
import com.pro.service.ICategoryService;
import java.util.List;
import javax.annotation.Resource;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.SessionAttributes;


@Controller
@RequestMapping("/categories")
@SessionAttributes("catesArray")
public class CategoryController {
    
    @Resource
    private ICategoryService cateService;

    @RequestMapping("/queryCates")
    public String queryCatesIndex(HttpServletRequest req,HttpServletResponse rep,ModelMap model){ 
	List<Category> catesArray  = this.cateService.getAllCategories();
        model.addAttribute("catesArray",catesArray);
        if(model
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值