Spring整合Web開發

 

時間:2017-2-2 02:17java

 

——導入jar包

一、導入Spring開發基本jar包
    spring-beans-3.2.0.RELEASE.jarweb

    spring-context-3.2.0.RELEASE.jar
    spring-core-3.2.0.RELEASE.jar
    spring-expression-3.2.0.RELEASE.jar
 

二、導入commons-logging.jar

三、導入Spring Web開發jar包
    spring-web-3.2.0.RELEASE.jarspring


——簡單測試

一、編寫一個Service

二、編寫一個Servlet

三、編寫配置文件

四、編寫log4j.properties

五、訪問Servlet調用Service方法

可是在測試的過程當中發現:
    每次執行Servlet的時候都會加載Spring環境,如何解決?
        *   將加載的信息內容保存到ServletContext中,ServletContext對象是全局對象,服務器啓動時就會建立,在建立ServletContext時就會加載Spring環境。
        *   能夠建立一個監聽器:ServletContextListener,用於監聽ServletContext對象的建立和銷燬。

這件事情spring-web-3.2.0.RELEASE.jar幫助咱們完成了。

——配置監聽器

將Spring容器的初始化操做,交由Web容器負責。

一、配置核心監聽器:ContextLoaderListener
    Spring提供的ContextLoaderListener實現了ServletContextListener接口。

二、配置全局參數:contextConfigLocation
    用於指定Spring框架的配置文件的位置。
    默認在XmlWebApplicationContext類中指定爲WEB-INF目錄下:
        public static final String DEFAULT_CONFIG_LOCATION = "/WEB-INF/applicationContext.xml";
    若是須要修改默認目錄,能夠經過初始化參數進行修改:
        <param-name>contextConfigLocation</param-name>
        <param-value>classpath:applicationContext.xml</param-value>

——得到WebApplicationContext對象

由於Spring容器已經交由Web容器初始化和管理,因此得到WebApplicationContext對象須要依賴ServletContext對象:

一般直接在Servlet中獲取:
    WebApplicationContext context = WebApplicationContextUtils.getWebApplicationContext(getServletContext());
    底層也是經過:getServletContext().getAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE);來得到。

另外一種獲取方式:
    WebApplicationContext context = (WebApplicationContext) getServletContext().getAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE);

一般使用第一種方式來得到ApplicationContext對象。


——示例代碼

Servlet:

public class UserServlet extends HttpServlet {
 
    public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
 
        WebApplicationContext context = WebApplicationContextUtils.getWebApplicationContext(getServletContext());
        UserService userService = (UserService) context.getBean("userService");
        userService.sayHello();
    }
}

----------------------------------------------------------------------------------------------------------------------------

web.xml

<?xml version="1.0" encoding="UTF-8"?>
    <servlet>
        <servlet-name>UserServlet</servlet-name>
        <servlet-class>com.wyc.servlet.UserServlet</servlet-class>
    </servlet>
 
    <servlet-mapping>
        <servlet-name>UserServlet</servlet-name>
        <url-pattern>/UserServlet</url-pattern>
    </servlet-mapping>
 
    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
 
    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>classpath:applicationContext.xml</param-value>
    </context-param>
 
</web-app>


----------------------------------------------------------------------------------------------------------------------------

spring配置文件:

<?xml version="1.0" encoding="UTF-8"?>
 
    <bean id="userService" class="com.wyc.service.UserService" />
 
</beans>


----------------------------------------------------------------------------------------------------------------------------

UserService:

public class UserService {
    public void sayHello(){
        System.out.println("Hello Spring Web");
    }
}
相關文章
相關標籤/搜索