使用Intellij Idea 和SpringMVC开发具有RESTful架构风格的API接口

下载地址:http://www.jetbrains.com/idea/#chooseYourEdition
使用Intellij Idea 和SpringMVC开发具有RESTful架构风格的API接口_第1张图片
另外还需要下载tomcat
http://mirrors.cnnic.cn/apache/tomcat/tomcat-8/v8.0.33/bin/apache-tomcat-8.0.33.zip

使用Intellij Idea 和SpringMVC开发具有RESTful架构风格的API接口_第2张图片

安装教程:
这里写图片描述

使用Intellij Idea 和SpringMVC开发具有RESTful架构风格的API接口_第3张图片

以上是激活intellij idea的方法

配置tomcat
使用Intellij Idea 和SpringMVC开发具有RESTful架构风格的API接口_第4张图片
使用Intellij Idea 和SpringMVC开发具有RESTful架构风格的API接口_第5张图片
使用Intellij Idea 和SpringMVC开发具有RESTful架构风格的API接口_第6张图片
使用Intellij Idea 和SpringMVC开发具有RESTful架构风格的API接口_第7张图片
使用Intellij Idea 和SpringMVC开发具有RESTful架构风格的API接口_第8张图片

  1. Spring mvc配置
    使用Intellij Idea 和SpringMVC开发具有RESTful架构风格的API接口_第9张图片

Web.xml


<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_3_1.xsd"
         version="3.1">
    <context-param>
        <param-name>contextConfigLocationparam-name>
        <param-value>/WEB-INF/applicationContext.xmlparam-value>
    context-param>
    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListenerlistener-class>
    listener>
    <servlet>
        <servlet-name>springservlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServletservlet-class>
        <init-param>
            <param-name>contextConfigLocationparam-name>
            <param-value>/WEB-INF/dispatcher-servlet.xmlparam-value>
        init-param>
        <load-on-startup>1load-on-startup>
    servlet>
    <servlet-mapping>
        <servlet-name>springservlet-name>
        <url-pattern>/url-pattern>
    servlet-mapping>
web-app>

dispatcher-servlet.xml


<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       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">


    <context:component-scan base-package="com.crobot.controller"/>

    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/pages/"/>
        <property name="suffix" value=".jsp"/>
    bean>
beans>

applicationContext.xml

<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">

beans>

你可能感兴趣的:(web后端)