2016年9月22日 星期四

Build Spring MVC

內容說明
- 建立Spring MVC
- 含有2種做法(1.一般 2. RequestMapping)

範例環境
- Intellj 13
- Spring 3.2.0
- Tomcat 7.0

前置作業
- 參考下列網址提供之 jar 檔下載
- 參考網址:
http://openhome.cc/Gossip/SpringGossip/FirstSpringMVC.html
http://blog.kenyang.net/2010/10/14/spring-mvcspringjar-spring-webmvc

範例實作
目標:
在index.jsp頁面輸入"字串",透過Spring MVC 將"字串"導到hello.jsp


0.檔案目錄結構












1.Tomcat 運行

2.Spring jar 檔匯入

3.web.xml設定

- 注意事項
a.設定『Tomcat』一啟動要進入的url(可自行決定是否加入)
  1. <welcome-file-list>
  2. <welcome-file>/index.jsp</welcome-file>
  3. </welcome-file-list>
b.只要任何url後面為.do(例如:http://localhost:8080/hello.do),就會被『導入』到名稱為mvc-dispatcher的servlet

c.該servlet會在進入/WEB-INF/mvc-config.xml 該設定檔讀取設定(servlet-mapping會去找相同名稱的servlet此範例為name=mvc-dispatcher)

d.
如果今天想要強迫Web Container啟動時
1.就要載入特定的Servlet
2.並且指定載入的順序
那麼就需要<load-on-startup>標籤了
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <web-app xmlns="http://java.sun.com/xml/ns/javaee"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
  5. http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
  6. version="2.5">
  7. <servlet>
  8. <servlet-name>mvc-dispatcher</servlet-name>
  9. <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
  10. <init-param>
  11. <param-name>contextConfigLocation</param-name>
  12. <param-value>/WEB-INF/mvc-config.xml</param-value>
  13. </init-param>
  14. <load-on-startup>1</load-on-startup>
  15. </servlet>
  16. <servlet-mapping>
  17. <servlet-name>mvc-dispatcher</servlet-name>
  18. <url-pattern>*.do</url-pattern>
  19. </servlet-mapping>
  20. </web-app>
4.mvc-config.xml 設定

注意:請直接參考code的內容註釋
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xmlns:context="http://www.springframework.org/schema/context"
  5. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
  6. <!--要使用RequestMapping要有下面這句,url進來,到指定的資料夾中找,有設定RequestMapping的Controller-->
  7. <context:component-scan base-package="main"/>
  8. <!--RequestMapping結束-->
  9. <bean id="viewResolver"
  10. class="org.springframework.web.servlet.view.InternalResourceViewResolver">
  11. <!--InternalResourceViewResolver的"prefix"、"suffix"屬性會與ModelAndView返回的路徑資訊結合-->
  12. <!--在servlet requestMapping都會把路徑寫好,所以 打 / 就好)-->
  13. <property name="prefix">
  14. <value>/</value>
  15. </property>
  16. <!--讀取"副檔名".jsp開頭的檔案-->
  17. <property name="suffix">
  18. <value>.jsp</value>
  19. </property>
  20. </bean>
  21. <!--第一種MyController沒有用RequestMapping,要特別指定,哪個url進來,要進到哪個controller-->
  22. <!--若有使用RequestMapping,則不需下面這段-->
  23. <!--網址為/hello.do進來的request,要進到哪一個controller-->
  24. <bean name="/hello.do" class="main.MyController">
  25. </bean>
  26. </beans>
InternalResourceViewResolver 的設定不是必要的,如果沒設,處理請求的元件就必須字串告知 spring-webmvc接下來由哪個 URL 組織畫面進行回應,也就是你必須傳回如 "hello.jsp" 這樣的字串,這樣會比較沒有彈性,如上設定 InternalResourceViewResolver 的話,你只要傳回 "hello" 字串,InternalResourceViewResolver 會自動根據 prefix 與 suffix 設定,得知目前實際上要以 "/hello.jsp" 來進行『畫面回應』,將來若想要改為其他回應技術,就只需要修改 XML 檔案。

重點:
所以最後是return『response』回應給傳進來的request

而這個『response』是透過ModeAndView進行組織的,
而『Model 參數』用來攜帶『回應頁面』要用到的資料

5.index.jsp設定
  1. <html>
  2. <head>
  3. <title></title>
  4. </head>
  5. <body>
  6. <form action="/hello.do">
  7. 請輸入名子:<input type="text" name="nameInput">
  8. <input type="submit" value="傳送到一般的Spring">
  9. </form>
  10. <form action="/hello2.do">
  11. 請輸入名子:<input type="text" name="nameInput2">
  12. <input type="submit" value="傳送到requestMapping">
  13. </form>
  14. </body>
  15. </html>
6.hello.jsp設定
  1. <html>
  2. <head>
  3. <title></title>
  4. </head>
  5. <body>
  6. <h1>This is Form Normal Spring:Hello ${nameInput}</h1><br>
  7. <h1>This is From RequestMapping:Hello ${nameInput2}</h1>
  8. </body>
  9. </html>
7.使用基本Spring MVC 的Controller
  1. package main;
  2. import org.springframework.web.servlet.ModelAndView;
  3. import org.springframework.web.servlet.mvc.Controller;
  4. import javax.servlet.http.HttpServletRequest;
  5. import javax.servlet.http.HttpServletResponse;
  6. /**
  7. * Created by ytchen on 2016/9/22.
  8. */
  9. public class MyController implements Controller{
  10. public ModelAndView handleRequest(HttpServletRequest req,
  11. HttpServletResponse res)
  12. throws Exception {
  13. //取得index.jsp輸入的名子
  14. String name = req.getParameter("nameInput");
  15. //參數1:要傳到哪個jsp;參數2:該物件的屬性名稱(前台取值用)參數3:要傳遞的物件或值
  16. return new ModelAndView("hello", "nameInput", name);
  17. }
  18. }
8.使用@RequestMapping Spring 的Controller

- 注意事項
- @RequestMapping 有2種標註方式,一種是標在class,一種是標在method。
- Class類別使用@Controller 標記為Controller
- 請參考:
http://www.blogjava.net/fancydeepin/archive/2014/08/15/springmvc-tutorial-02.html
http://www.cnblogs.com/zhangshitong/p/5195746.html
  1. package main;
  2. import org.springframework.stereotype.Controller;
  3. import org.springframework.web.bind.annotation.RequestMapping;
  4. import org.springframework.web.bind.annotation.RequestMethod;
  5. import org.springframework.web.servlet.ModelAndView;
  6. import javax.servlet.http.HttpServletRequest;
  7. /**
  8. * Created by ytchen on 2016/9/22.
  9. */
  10. @Controller
  11. public class MyController2 {
  12. @RequestMapping(value = "/hello2.do", method = {RequestMethod.POST, RequestMethod.GET})
  13. public ModelAndView hello(HttpServletRequest request) {
  14. //取得index.jsp輸入的名子
  15. String name = request.getParameter("nameInput2");
  16. //將request傳到指定jsp
  17. ModelAndView mav = new ModelAndView("hello");
  18. mav.addObject("nameInput2", name);
  19. return mav;
  20. }
  21. }
9.運行畫面
a.index.jsp





b.按下傳送到一般的Spring





c.按下傳送到requestMapping

沒有留言:

張貼留言