您好,登錄后才能下訂單哦!
本文小編為大家詳細介紹“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框架如何搭建”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。