博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
基于注解的spring MVC程序
阅读量:6722 次
发布时间:2019-06-25

本文共 1283 字,大约阅读时间需要 4 分钟。

在上一篇博文的基础上进行修改

修改配置文件

修改类

package com.hellospringmvc;import java.util.ArrayList;import java.util.List;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.RequestMethod;import org.springframework.web.servlet.ModelAndView;@Controllerpublic class HelloController { 	@RequestMapping("/queryItems")	public ModelAndView queryItems(){				//商品列表		List
itemsList = new ArrayList
(); Item items_1 = new Item(); items_1.setName("联想笔记本"); items_1.setPrice(6000f); items_1.setDetail("ThinkPad T430 联想笔记本电脑!"); Item items_2 = new Item(); items_2.setName("苹果手机"); items_2.setPrice(5000f); items_2.setDetail("iphone6苹果手机!"); itemsList.add(items_1); itemsList.add(items_2); //创建modelAndView准备填充数据、设置视图 ModelAndView modelAndView = new ModelAndView(); //填充数据 modelAndView.addObject("itemsList", itemsList); //视图 modelAndView.setViewName("helloController"); return modelAndView; }}

转载地址:http://sfnmo.baihongyu.com/

你可能感兴趣的文章
设计模式之结构型模式
查看>>
冒泡,快排
查看>>
git: fatal: Could not read from remote repository
查看>>
PHP移动互联网开发笔记(7)——MySQL数据库基础回顾[1]
查看>>
2.文件内容的命令
查看>>
XNA 中 SoundEffect 与 SoundEffectInstance 的区别
查看>>
day 036 线程 -创建,守护线程
查看>>
sublime中nodejs配置
查看>>
通过FFmpeg将rtsp流摄像头视频转码为rtmp播放
查看>>
启动两个Redis服务
查看>>
测试一个目录下的文件共有多少行
查看>>
ctype.h——使用测试字符函数
查看>>
大数据应用的10大神话和误区
查看>>
Postgresql客户端不能远程连接数据库服务器 org.postgresql.util.PSQLException:
查看>>
Leetcode | Decode Ways
查看>>
RAM的分类
查看>>
UDP/TCP通信小记
查看>>
对Inode、Hard Link以及Soft Link的理解
查看>>
SubareaOpr
查看>>
1111. Online Map (30)
查看>>