springmvc学习笔记2


@CHARSET "UTF-8";

#global {
    text-align: left;
    border: 1px solid #dedede;
    background: #efefef;
    width: 560px;
    padding: 20px;
    margin: 100px auto;
}

form {
  font:100% verdana;
  min-width: 500px;
  max-width: 600px;
  width: 560px;
}

form fieldset {
  border-color: #bdbebf;
  border-width: 3px;
  margin: 0;
}

legend {
    font-size: 1.3em;
}

form label { 
    width: 250px;
    display: block;
    float: left;
    text-align: right;
    padding: 2px;
}

#buttons {
    text-align: right;
}
#errors, li {
	color: red;
}

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:p="http://www.springframework.org/schema/p"
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xmlns:context="http://www.springframework.org/schema/context"
    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="laotou99.controller"/>
    <context:component-scan base-package="laotou99.service"/>
    
    <mvc:annotation-driven/>
    <mvc:resources mapping="/css/**" location="/css/"/>
    <mvc:resources mapping="/*.html" location="/"/>
    
    <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/jsp/"/>
        <property name="suffix" value=".jsp"/>
    </bean>
</beans>

<%@ page language="java" contentType="text/html; charset=GBK"
    pageEncoding="GBK"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GBK">
<title>Save Product</title>
</head>
<body>
	<div id="global">
		<h4>The product has been saved.</h4>
		<p>
			<h5>Details:</h5>
			Product Name: ${product.name}<br/>
			Description: ${product.description}<br/>
			Price: $${product.price} 
		</p>
	</div>
</body>
</html>


<%@ page language="java" contentType="text/html; charset=GBK"
    pageEncoding="GBK"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GBK">
<title>Add Product Form</title>
</head>
<body>
<div id="global">	
	<form action="product_save.action" method="post">
		<fieldset>
			<legend>
				<p>
					<label for="name">Product Name: </label>
					<input type="text" id="name" name="name" tabindex="1">
				</p>
				<p>
					<label for="description">Description: </label>
					<input type="text" id="description" name="description" tabindex="2">
				</p>
				<p>
					<label for="price">Price: 		</label>
					<input type="text" id="price" name="price" tabindex="3">
				</p>
				<p id="buttons">			
					<input type="reset" id="reset" tabindex="4">
					<input type="submit" id="submit" value="Add Product" tabindex="5">
				</p>
			</legend>
		</fieldset>
	</form>	
</div>
</body>
</html>

<%@ page language="java" contentType="text/html; charset=GBK"
    pageEncoding="GBK"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GBK">
<title>View Product</title>
<style type="text/css">@import url("<c:url value="/css/main.css"/>");</style>
</head>
<body>
<div id="global">
	<h4>${message}</h4>
	<p>
		<h5>Details:</h5>
		Product Name: ${product.name}<br/>
		Description: ${product.description}<br/>
		Price: $${product.price}
	</p>
	
</div> 

</body>
</html>

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">
  <display-name>SMTest3</display-name>
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
  </welcome-file-list>
  
  <servlet>
        <servlet-name>springmvc</servlet-name>
        <servlet-class>
            org.springframework.web.servlet.DispatcherServlet
        </servlet-class>
	    <init-param>
			<param-name>contextConfigLocation</param-name>
			<param-value>/WEB-INF/config/springmvc-config.xml</param-value>
		</init-param>
        <load-on-startup>1</load-on-startup>    
	</servlet>

    <servlet-mapping>
        <servlet-name>springmvc</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>
    
</web-app>

package laotou99.controller;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.servlet.mvc.support.RedirectAttributes;

import laotou99.domain.Product;
import laotou99.form.ProductForm;
import laotou99.service.ProductService;

@Controller
public class ProductController {

	private static final Log logger = LogFactory.getLog(ProductController.class);

	//--第二节编码-----------------
	@Autowired
	private ProductService productService;
	
	@RequestMapping(value="/product_input")
	public String inputProduct(){
		
		logger.info("inputProduct called");
		return "ProductForm";
	}
	
	/*第一节编码
	@RequestMapping(value="/product_save")
	public String saveProduct(ProductForm productForm,Model model){
		
		logger.info("saveProduct called");
		Product product = new Product();
		product.setName(productForm.getName());
		product.setDescription(productForm.getDescription());
		
		try {
			product.setPrice(Float.parseFloat(productForm.getPrice()));
		} catch (NumberFormatException e) {
		}
		
		model.addAttribute("product", product);
		
		return "ProductDetails";
	}*/
	
	//--第二节编码-----------------
	@RequestMapping(value="/product_save",method=RequestMethod.POST)
	public String saveProduct(ProductForm productForm,RedirectAttributes redirectAttributes){
		
		logger.info("saveProduct called");
		
		Product product = new Product();
		product.setName(productForm.getName());
		product.setDescription(productForm.getDescription());
		try {
			product.setPrice(Float.parseFloat(productForm.getPrice()));
		} catch (NumberFormatException e) {
		}
		
		Product savedProduct = productService.add(product);
		redirectAttributes.addFlashAttribute("message", 
				"The product was successflly added");
			
		return "redirect:/product_view/"+savedProduct.getId();
	}
	
	@RequestMapping(value="/product_view/{id}")
	public String viewProduct(@PathVariable Long id, Model model)
	{
		Product product = productService.get(id);
		
		model.addAttribute("product", product);
		return "ProductView";
	}
}

package laotou99.domain;

import java.io.Serializable;

public class Product implements Serializable {
	
	private static final long serialVersionUID = 4164762642303754509L;
	private long id;
	private String name;
	private String description;
	private float price;
	
	
	public long getId() {
		return id;
	}
	public void setId(long id) {
		this.id = id;
	}
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
	public String getDescription() {
		return description;
	}
	public void setDescription(String description) {
		this.description = description;
	}
	public float getPrice() {
		return price;
	}
	public void setPrice(float price) {
		this.price = price;
	}	
}

package laotou99.form;

public class ProductForm {
	private String name;
	private String description;
	private String price;
	
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
	public String getDescription() {
		return description;
	}
	public void setDescription(String description) {
		this.description = description;
	}
	public String getPrice() {
		return price;
	}
	public void setPrice(String price) {
		this.price = price;
	}
}

package laotou99.service;

import laotou99.domain.Product;

public interface ProductService {

	Product add(Product product);
	
	Product get(long id);
}

package laotou99.service;

import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.atomic.AtomicLong;

import org.springframework.stereotype.Service;

import laotou99.domain.Product;


@Service
public class ProductServiceImp implements ProductService {

	private Map<Long,Product>  products =
			new HashMap<Long,Product>();
	private AtomicLong generator = new AtomicLong();
	
	
	
	public ProductServiceImp() {
		Product product = new Product();
		product.setName("JX1 Power Drill");
		product.setDescription("Powerful hand drill, made to perfection");
		product.setPrice(123.99f);
		
		add(product);
		
	}

	@Override
	public Product add(Product product) { 
		long newId = generator.incrementAndGet();
		product.setId(newId);
		products.put(newId, product);
		return product;
	}

	@Override
	public Product get(long id) {
		
		return products.get(id);
	}
}












  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值