Spring MVC Step by Step

53 篇文章 0 订阅
46 篇文章 0 订阅

    17.index.jsp

<%@include file="/WEB-INF/jsp/include.jsp"%>
<c:redirect url="/hello.htm"/>

       18.hello.jsp

<%@ include file="/WEB-INF/jsp/include.jsp"%>
<html>
<head>
<title>
<fmt:message key="title"/>
</title>
</head>
<body>
<h1>
<fmt:message key="heading"/>

</h1>
<p>
<fmt:message key="greeting"/>
<c:out value="${myModel.now}"/>

</p>
<h3>Products</h3>
<c:forEach items="${myModel.products}" var="prod">
<c:out value="${prod.description}"/><i>$<c:out value="${prod.price}"/> </i><br><br>
</c:forEach>
<br>
<a href="<c:url value="priceIncrease.htm"/> ">Increase Prices</a>
<br>
</body>
</html>

      19.include.jsp

<%@ page contentType="text/html;charset=utf-8" language="java" %>

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>

       20.priceIncrease.jsp

<%--
Created by IntelliJ IDEA.
User: linf
Date: 2009-5-6
Time: 11:26:59
To change this template use File | Settings | File Templates.
--%>
<%@ include file="/WEB-INF/jsp/include.jsp"%>
<%@ taglib prefix="spring" uri="/spring" %>
<html>
<head><title><fmt:message key="title"/> </title></head>
<body><h1><fmt:message key="priceincrease.heading"/></h1>

<form method="post">
<table width="95%" bgcolor="f8f8ff" border="0" cellpadding="0" cellpadding ="5">
<tr>
<td align="right" width="20%">Increase (%):</td>
<spring:bind path="priceIncrease.percentage">
<td width="20%">
<input type="text" name="percentage" value="<c:out value="${status.value}"/>">
</td>
<td width="60%">
<font color="red"><c:out value="${status.errorMessage}"/></font>
</td>
</spring:bind>
</tr>
</table>
<br>
<spring:hasBindErrors name="priceIncrease">
<b>Please fix all errors!</b>
</spring:hasBindErrors>
<br><br>
<input type ="submit" align="center" value="Execute">
</form>
<a href="<c:url value="hello.htm"/> ">Home</a>

</body>
</html>

       21.war/WEB-INF/springapp-servlet.xml

<?mxl 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:aop="http://www.springframework.org/schema/aop"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:jee="http://www.springframework.org/schema/jee"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd
http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-2.5.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">


<bean id="priceIncreaseValidator" class="bus.PriceIncreaseValidator"/>
<bean id="priceIncreaseForm" class="web.PriceIncreaseFormController">
<property name="sessionForm">
<value>true</value>
</property>
<property name="commandName">
<value>priceIncrease</value>
</property>
<property name="commandClass">
<value>bus.PriceIncrease</value>
</property>
<property name="validator">
<ref bean="priceIncreaseValidator"/>
</property>
<property name="formView">
<value>priceIncrease</value>
</property>
<property name="successView">
<value>hello.htm</value>
</property>
<property name="productManager">
<ref bean="prodMan"/>
</property>
</bean>


<bean id="dataSource"
class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName">
<value>com.mysql.jdbc.Driver</value>
</property>
<property name="url">
<value>jdbc:mysql://localhost:3306/menagerie?useUnicode=true
</value>
</property>
<property name="username">
<value>root</value>
</property>
<property name="password">
<value></value>
</property>
</bean>

    <bean id="transactionManager"
class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource"/>


</bean>

    <aop:config proxy-target-class="true">
<aop:advisor pointcut="execution(* *..ProductManager.*(..))" advice-ref="txAdvice"/>
</aop:config>

    <tx:advice id="txAdvice">
<tx:attributes>
<tx:method name="save*"/>

        </tx:attributes>
</tx:advice>

    <bean id="springappController" class="web.SpringappController">
<property name="productManager">
<ref bean="prodMan"/>
</property>
</bean>

    <bean id="prodManDao" class="db.ProductManagerDaoJdbc">

        <property name="dataSource">
<ref bean="dataSource"/>
</property>
</bean>

    <bean id="prodMan" class="bus.ProductManager">
<property name="productManagerDao">
<ref bean="prodManDao"/>
</property>
</bean>

    <bean id="messageSource"
class="org.springframework.context.support.ResourceBundleMessageSource">
<property name="basename">
<value>messages</value>
</property>
</bean>

    <bean id="urlMapping" class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
<property name="mappings">
<props>
<prop key="/hello.htm">springappController</prop>
<prop key="/priceIncrease.htm">priceIncreaseForm</prop>
</props>
</property>
</bean>
<bean id="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="viewClass">
<value>org.springframework.web.servlet.view.JstlView</value>
</property>
<property name="prefix">
<value>/WEB-INF/jsp/</value>
</property>
<property name="suffix">
<value>.jsp</value>
</property>
</bean>


</beans>

       22.web.xml

<?xml version = "1.0" encoding = "utf-8" ?>
<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
version="2.4">
<servlet>
<servlet-name>springapp</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>springapp</servlet-name>
<url-pattern>*.htm</url-pattern>
</servlet-mapping>

    <welcome-file-list>
<welcome-file>
index.jsp
</welcome-file>
</welcome-file-list>

    <jsp-config>
<taglib>
<taglib-uri>/spring</taglib-uri>
<taglib-location>/WEB-INF/spring.tld</taglib-location>
</taglib>
</jsp-config>

</web-app>

       23.spring-tld(在springframe中拷贝)

http://hi.baidu.com/2_520/blog/item/6d38b303d1ae05e409fa9376.html

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

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值