中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java Spring框架如何搭建

發布時間:2022-06-01 16:30:53 來源:億速云 閱讀:244 作者:iii 欄目:大數據

本文小編為大家詳細介紹“java Spring框架如何搭建”,內容詳細,步驟清晰,細節處理妥當,希望這篇“java Spring框架如何搭建”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。

1.配置web.xml文件

<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://java.sun.com/xml/ns/javaee"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
    id="WebApp_ID" version="2.5">
    <!--設置轉發-->
    <servlet>
        <servlet-name>DispatcherServlet</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>
        <!--標記容器是否在啟動的時候就加載這個servlet。
         當值為0或者大于0時,表示容器在應用啟動時就加載這個servlet;
         當是一個負數時或者沒有指定時,則指示容器在該servlet被選擇時才加載。
         正數的值越小,啟動該servlet的優先級越高。-->
        <load-on-startup> 1</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>DispatcherServlet</servlet-name>
        <!--接受所有請求-->
        <url-pattern>/</url-pattern>
    </servlet-mapping>
</web-app>

2.配置applicationContext.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"
       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/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:annotation-config/>
    <!-- 自動掃描web包 ,將帶有注解的類 納入spring容器管理 -->  
    <context:component-scan base-package="com.zds"></context:component-scan>  
</beans>

3.新建Controller文件

package com.zds;
/**  
* @author zds
* @date 2018年3月6日  
*/
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;
 
@RestController
@RequestMapping("/test")
public class TestController {
    @RequestMapping(value = "hello", method = RequestMethod.GET)
    @ResponseBody
    public String helloWorld(@RequestParam("user") String userName) {
        String string = "";
        string.split(",");
        return "Hello " + userName + " !";
    }
}

讀到這里,這篇“java Spring框架如何搭建”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

炉霍县| 桂平市| 嘉义市| 睢宁县| 石屏县| 永福县| 陵水| 凤台县| 宝鸡市| 太康县| 巴林右旗| 酉阳| 安图县| 林周县| 故城县| 天等县| 吴旗县| 和田县| 铁岭市| 高邮市| 永春县| 虞城县| 南漳县| 利川市| 安徽省| 静海县| 精河县| 绥江县| 寿光市| 黄山市| 阿图什市| 华宁县| 江陵县| 介休市| 澄城县| 即墨市| 河东区| 太湖县| 成都市| 房产| 会昌县|