spring4簡單例項(1)

又見藤蔓發表於2017-01-03

這篇文章簡單介紹下spring4.3.5的使用。
所用的jar包:

controller類:

箭頭指向的那兩個,別的不用看,其中Test是測試類,如下:


springmvc-servlet.xml中的內容如下:我複製了,你複製過去就行

<?xml version="1.0" encoding="UTF-8"?>
<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-4.3.xsd
        http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.3.xsd">  
    <!-- scan the package and the sub package -->
    <context:component-scan base-package="test.SpringMVC"/>
    <!--
        配置bean
        class:bean的全類名,通過反射的方式在IOC容器中建立Bean,所以要求Bean中必須有無引數的構造器
        id:標識容器的bean,id唯一。
     -->
    <bean id="helloWorld" class="test.ceshi.HelloWorld">
        <property name="name" value="springs"></property>
    </bean>

</beans>

註釋:

ApplicationContext的主要實現類:

  ClassPathXmlApplicationContext:從類路徑下載入配置檔案

FileSystemXmlApplicationContext:從檔案系統中載入配置檔案

ConfigurableApplicationContext擴充套件於ApplicationContext,新增加兩個主要方法:refresh()和close(),讓ApplicationContext具有啟動、重新整理和關閉上下文的能力

ApplicationContext在初始化上下文時就例項化所有單例的Bean。

WebApplicationContext是專門為WEB應用而準備的,它允許從相對於WEB根目錄的路徑中完成初始化工作

相關文章