作為一個基礎的開發工具,想必大家都已經下載過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 + " !"; } }
4.把所需的jar包放入WEB-INF/lib資料夾中,這些jar包,和這個搭建的項目我都放到這裡,如果有興趣可以去下載。
5.到這裡設定完成, eclipse中把專案加入到tomcat中,啟動,瀏覽器中輸入:
http://localhost:8080/SpringWebProject/test/hello?user=world
拓展
Spring核心容器:核心容器提供Spring 框架的基本功能。核心容器的主要元件是BeanFactory,它是工廠模式的實作。 BeanFactory 使用控制反轉(IOC) 模式將應用程式的配置和依賴性規範與實際的應用程式程式碼分開。
以上就是java Spring框架的搭建,總共分為五個步驟,大家只要根據上方的操作,都不會有太大的問題。學會後趕緊把下載好的Spring框架搭建起來吧。