SpringMvc入門四----rest風格Url

 

知識點:css

  1. REST風格URL簡介
  2. SpringMvc對rest風格的支持
  3. @PathVariable 獲取 Url 變量
  4. SpringMvc對靜態資源的處理

REST風格URL簡介:

咱們平時看到的spring項目請求都是*.do的,可是像下面這兩個網址同樣,咱們能夠去掉.do,這樣看起來就比較清爽。第一個是比較明顯的REST風格URL,顯示的網址沒有後綴,第二種其實也算是一種REST風格URL。java

SpringMvc對Rest風格的支持:

效果預覽:能夠看到地址欄上的url已經沒有.do了。web

再點擊"文章一"可見:直接用文章的id顯示文章的地址。spring

 

DEMO文件圖:

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

首先配置web.xml文件,爲全部的地址請求spring攔截。spring-mvc

Web.xml的配置:

    <servlet>mvc

        <servlet-name>springmvc</servlet-name>app

        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>jsp

        <init-param>測試

            <param-name>contextConfigLocation</param-name>url

            <param-value>classpath:spring-mvc.xml</param-value>

        </init-param>

    </servlet>

    <servlet-mapping>

        <servlet-name>springmvc</servlet-name>

        <url-pattern>/</url-pattern>

    </servlet-mapping>

Spring-mvc.xml文件代碼:

 

<?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:context="http://www.springframework.org/schema/context"

xmlns:mvc="http://www.springframework.org/schema/mvc"

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"/>

      

<!-- 視圖解析器 -->

    <bean id="viewResolver"

        class="org.springframework.web.servlet.view.InternalResourceViewResolver">

        <property name="prefix" value="/WEB-INF/jsp/" />

        <property name="suffix" value=".jsp"></property>

    </bean>

</beans>

 

Article.java,屬性的set和get方法已經省略。

ArticleController代碼:

@Controller

@RequestMapping("/article")

public class ArticleController {

 

    @RequestMapping("/list")

    public String list(Model model){

        return "article/list";

    }

    

    @RequestMapping("/details/{id}")

    public ModelAndView details(@PathVariable("id") int id){

        ModelAndView mav=new ModelAndView();

        if(id==1){

            mav.addObject("article", new Article("文章一","這裏是文章一的內容"));

        }else if(id==2){

            mav.addObject("article", new Article("文章二","這裏是文章二的內容"));

        }

        mav.setViewName("article/details");

        return mav;

    }

}

註解:@PathVariable和@RequestParam,從名字上就能夠看出來,他們分別是從路徑裏面去獲取變量,也就是把路徑當作變量,後者是從請求裏面獲取參數。

 

jsp/article/list.jspBODY代碼:

<body>

<table>

    <tr>

        <th colspan="2">

            文章列表

        </th>

    </tr>

    <tr>

        <td>1</td>

        <td>

            <a href="${pageContext.request.contextPath}/article/details/1" target="_blank">文章一</a>

        </td>

    </tr>

    <tr>

        <td>2</td>

        <td>

            <a href="${pageContext.request.contextPath}/article/details/2" target="_blank">文章二</a>

        </td>

    </tr>

</table>

</body>

 

註解:這裏將文章一的路徑寫成/details/1,而後controller中就將1這個參數綁定到id上,再經過@PathVariable獲取這個1。

Details.jsp代碼:

<body>

<p>${article.title }</p>

<p>${article.content }</p>

</body>

測試地址:http://localhost:8080/SpringMvc03/article/list

 

SpringMvc對靜態資源的處理:

上面的DEMO是在沒有靜態資源的狀況下的rest風格,可是實際狀況下是有的,通常js,css,img,都會有,在上面的demo中,若是添加圖片或者其餘東西是行不通的,由於在web.xml中將全部的請求都添加了過濾器。這個時候就須要咱們對靜態資源作一步處理了。

Spring對靜態資源的處理是經過<mvc:resources …來處理,具體解釋就本身百度。

在上述DEMO的基礎上添加以下代碼:

    <mvc:resources mapping="/resources/**" location="/images/"/>

    

    <mvc:resources mapping="/resources2/**" location="/css/"/>

而後添加img和css, 這裏我添加一個img圖,和一個類css.具體css以下圖代碼:

而後修改list.jsp。將圖片引用過來。

 

接着爲details.jsp的文章內容,添加css.

 

測試:,

 

能夠看到圖片顯示出來了,若是沒有對靜態資源進行處理的話,是不會顯示的。而後再點擊文章一,也能夠看到文章一的標題是有變化了的。

 

好記性不如爛筆頭,菜鳥邊學邊把學到的東西記錄下來。

相關文章
相關標籤/搜索