RESTful开发风格

传统基于MVC开发的web应用

 Sevlet接收浏览器发送的数据后,由后台查询对应的结果,生成Model,最后将Model中的数据与View模板引擎进行渲染,得到的HTML返回给浏览器,但是这种开发模式只适用于支持HTML的客户端。

RESTful

 REST-表现层状态转换,资源在网络中以某种表现形式进行状态转移。REST提出的设计理念是,在web环境下以url的形式进行资源(图片、js、网页等)的传递。基于这种理念派生出来的RESTful,是基于REST理念的一套开发风格,是具体的开发规则。

 

 在RESTful风格下,不同的客户端发送请求后,服务器会返回JSON或者XML形式的数据,由客户端对数据进行渲染与展现,作为服务器专注于业务逻辑,作为客户端专注于页面开发。通过RESTful风格编写的程序又叫前后端分离。

 RESTful开发规范

  1.使用URL作为用户交互入口

  2.明确的语义规范(GET|POST|PUT|DELETE)

  3.只返回数据(JSON|XML),不包含任何展现

 RESTful命名要求

 

RESTful的使用

1.添加依赖

 

 2.配置web.xml

复制代码
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
         version="4.0">
    <servlet>
        <servlet-name>springmvc</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <init-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>classpath:applicationContext.xml</param-value>
        </init-param>
        <load-on-startup>0</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>springmvc</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>

    <filter>
        <filter-name>characterFilter</filter-name>
        <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
        <init-param>
            <param-name>encoding</param-name>
            <param-value>UTF-8</param-value>
        </init-param>
    </filter>
    <filter-mapping>
        <filter-name>characterFilter</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>
</web-app>
复制代码

3.配置applicationContext.xml

复制代码
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mv="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/context
            http://www.springframework.org/schema/context/spring-context.xsd
            http://www.springframework.org/schema/mvc
            http://www.springframework.org/schema/mvc/spring-mvc.xsd">
    <context:component-scan base-package="com.imooc.restful"/>
    <mvc:annotation-driven>
        <mvc:message-converters>
            <bean class="org.springframework.http.converter.StringHttpMessageConverter">
                <property name="supportedMediaTypes">
                    <list>
                        <value>text/html;charset=utf-8</value>
                    </list>
                </property>
            </bean>
        </mvc:message-converters>
    </mvc:annotation-driven>
    <mvc:default-servlet-handler/>
</beans>
复制代码

  启动tomcat后,输入网址http://localhost:8080/restful/request

 

posted @ 2023-01-12 10:40  阿风小子  阅读(31)  评论(0编辑  收藏  举报