<!-- 指定類的名稱 在對bean進行定義時,除了使用id屬性來指定名稱之外,為了提供多個名稱,可以使用alias標籤來指定。 -->
<alias name="" alias=""/>
<!-- applicationContext.xml檔案中使用import的方式匯入有模組配置檔案 -->
<import resource=""/>
<!-- 建立類 -->
<bean></bean>
<!--在基於主機方式配置Spring的配置檔案中,你可能會見到<context:annotation-config/>這樣一條配置,他的作用是式地向 Spring 容器註冊
AutowiredAnnotationBeanPostProcessor、CommonAnnotationBeanPostProcessor、
PersistenceAnnotationBeanPostProcessor 以及 RequiredAnnotationBeanPostProcessor 這 4 個BeanPostProcessor。
註冊這4個 BeanPostProcessor的作用,就是為了你的系統能夠識別相應的註解。 -->
<context:annotation-config></context:annotation-config>
<!-- Spring 2.5引入了更多典型化註解(stereotype annotations): @Component、@Service和 @Controller。@Component是所有受Spring管理元件的通用形式; -->
<context:component-scan base-package=""></context:component-scan>
<!-- 只要配置了ApplicationContext。ApplicationContext中的任何Bean可能實現LoadTimeWearveAware,從而接受load-time weaver 例項的引用。
與Spring 的JPA一起使用是很有用的。這裡load-time weaving對於JPA 類轉換是很必要的。 -->
<context:load-time-weaver/>
<!-- pring通過annotation註解註冊MBean到JMX實現監控java執行狀態 -->
<context:mbean-export/>
<!-- <context:property-override location="..."/> //這樣會自動地用properties檔案中定義的屬性覆蓋spring配置檔案中同名的屬性值。 -->
<context:property-override/>
<!-- 需要在spring的配置檔案裡新增一句:<context:property-placeholder location="classpath:jdbc.properties"/> 即可,這裡location值為引數配置檔案的位置,引數配置檔案通常放在src目錄下,而引數配置檔案的格式跟java通用的引數配置檔案相同,即鍵值對的形式, -->
<context:property-placeholder/>
<!-- -->
<context:spring-configured>
</context:spring-configured>
<!-- 所配置的javabean的描述資訊
<description></description>
-->
spring xml配置標籤詳解
相關文章
- POM.xml 標籤詳解XML
- input 標籤詳解
- img標籤詳解
- ANT標籤詳解
- HTML標籤詳解HTML
- Spring 常用的註解以及對應 XML 配置詳解SpringXML
- spring applicationContext.xml 配置檔案 詳解SpringAPPContextXML
- Struts標籤庫詳解
- Struts配置檔案詳解,web.xml以及struts-cofig.xml,以及struts-cofig.xml中各個標籤的作用。(轉)WebXML
- struts.xml配置詳解XML
- Maven專案中POM.xml檔案內的標籤大全詳解MavenXML
- Git tag標籤用法詳解Git
- HTML常見標籤詳解HTML
- struts2標籤詳解 .
- Struts2 XML配置詳解XML
- web.xml配置詳解7WebXML
- web.xml配置詳解6WebXML
- web.xml配置詳解5WebXML
- web.xml配置詳解4WebXML
- web.xml配置詳解3WebXML
- web.xml配置詳解2WebXML
- springmvc常用註解標籤詳解SpringMVC
- dedecms模板標籤dede:channelartlist詳解
- Go 結構體標籤詳解Go結構體
- 自定義分頁標籤詳解
- mybatis中foreach標籤詳解MyBatis
- HTML5標籤embed詳解HTML
- Maven中optional標籤詳解(轉)Maven
- Log4J.xml配置詳解XML
- 死磕Spring之IoC篇 - 解析自定義標籤(XML 檔案)SpringXML
- HTML5常見標籤詳解HTML
- Struts2的OGNL標籤詳解
- Spring IOC XML配置SpringXML
- Tomcat的Server.xml配置詳解TomcatServerXML
- Maven pom.xml檔案配置詳解MavenXML
- Hadoop配置hdfs-site.xml詳解HadoopXML
- HTML表單標籤詳解:如何用HTML標籤打造互動網頁?HTML網頁
- spring 自定義標籤Spring