快速业务通道

利用JBuilder 2005开发Spring实例 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-23
Spring实例(5) 时间:2010-12-04

修改SpringappController.java

springapp/src/web/SpringappController.java

package web; import org.springframework.web.servlet.mvc.Controller; import org.springframework.web.servlet.ModelAndView; import javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.io.IOException; import java.util.Map; import java.util.HashMap; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import bus.Product; import bus.ProductManager; public class SpringappController implements Controller {   /** Logger for this class and subclasses */   protected final Log logger = LogFactory.getLog(getClass());   private ProductManager prodMan;   public ModelAndView handleRequest(HttpServletRequest request, HttpServletResponse response)   throws ServletException, IOException {    String now = (new java.util.Date()).toString();    logger.info("returning hello view with " + now);    Map myModel = new HashMap();    myModel.put("now", now);    myModel.put("products", getProductManager().getProducts());    return new ModelAndView("hello", "model", myModel);   }   public void setProductManager(ProductManager pm) {    prodMan = pm;   }   public ProductManager getProductManager() {    return prodMan;   } }

17. 修改View以便显示商业数据,增加对message bundle的支持

springapp/war/WEB-INF/jsp/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="${model.now}"/> </p> <h3>Products</h3> <c:forEach items="${model.products}" var="prod"> <c:out value="${prod.description}"/> <i>contentlt;c:out value="${prod.price}"/></i><br><br> </c:forEach> </body> </html>

18. 增加一些测试数据

我们现在还不打算增加代码,从数据库装载商业对象。我们只springapp-servlet.xml中增加bean和messageSource设置,提供一些测试数据和对messages resource bundle的支持。

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

<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd"> <!-- - Application context definition for "springapp" DispatcherServlet. --> <beans>   <bean id="springappController" class="web.SpringappController">   <property name="productManager">    <ref bean="prodMan"/>   </property> </bean> <bean id="prodMan" class="bus.ProductManager"> <property

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号