java商品列表展示_springMVC入门程序。使用springmvc实现商品列表的展示。
时间: 2024-05-07 11:22:50 浏览: 135
好的,下面给出一个简单的示例程序。
首先,需要创建一个 Maven 项目,并添加以下依赖:
```xml
<dependencies>
<!-- Spring MVC -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>5.3.5</version>
</dependency>
<!-- Jackson JSON Processor -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.12.2</version>
</dependency>
<!-- JSTL -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
<!-- Servlet API -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
</dependency>
</dependencies>
```
然后,创建一个 `Product` 类,用于表示商品信息:
```java
public class Product {
private int id;
private String name;
private double price;
// getters and setters
}
```
接着,创建一个 `ProductService` 接口和一个 `ProductServiceImpl` 类,用于提供商品数据:
```java
public interface ProductService {
List<Product> findAll();
}
@Service
public class ProductServiceImpl implements ProductService {
private static final List<Product> products = new ArrayList<>();
static {
products.add(new Product(1, "iPhone", 999.99));
products.add(new Product(2, "iPad", 799.99));
products.add(new Product(3, "MacBook", 1299.99));
}
@Override
public List<Product> findAll() {
return products;
}
}
```
然后,创建一个 `ProductController` 类,用于处理商品列表请求:
```java
@Controller
public class ProductController {
@Autowired
private ProductService productService;
@GetMapping("/products")
public String listProducts(Model model) {
List<Product> products = productService.findAll();
model.addAttribute("products", products);
return "productList";
}
}
```
这里使用 `@Controller` 注解标记该类为控制器,使用 `@Autowired` 注解注入 `ProductService` 对象。
`listProducts` 方法处理 `/products` 请求,调用 `ProductService` 获取商品列表,并将其放入 `Model` 中,然后返回 `productList` 视图。
最后,创建一个 `productList.jsp` 视图,用于展示商品列表:
```jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Product List</title>
</head>
<body>
<h1>Product List</h1>
<table>
<tr>
<th>Id</th>
<th>Name</th>
<th>Price</th>
</tr>
<c:forEach items="${products}" var="product">
<tr>
<td>${product.id}</td>
<td>${product.name}</td>
<td>${product.price}</td>
</tr>
</c:forEach>
</table>
</body>
</html>
```
这里使用 JSTL 的 `forEach` 标签遍历商品列表,展示每个商品的 id、name 和 price。
最后,在 `web.xml` 中配置 `DispatcherServlet`:
```xml
<web-app>
<servlet>
<servlet-name>dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/dispatcher-servlet.xml</param-value>
</init-param>
</servlet>
<servlet-mapping>
<servlet-name>dispatcher</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
```
创建 `dispatcher-servlet.xml` 配置文件,指定视图解析器和控制器包:
```xml
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd">
<context:component-scan base-package="com.example.controller" />
<mvc:annotation-driven />
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/views/" />
<property name="suffix" value=".jsp" />
</bean>
</beans>
```
现在,运行程序,访问 `http://localhost:8080/products`,即可看到商品列表。
阅读全文