小編給大家分享一下xml配置spring profiles需要注意什么,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
網(wǎng)站建設(shè)哪家好,找成都創(chuàng)新互聯(lián)!專(zhuān)注于網(wǎng)頁(yè)設(shè)計(jì)、網(wǎng)站建設(shè)、微信開(kāi)發(fā)、重慶小程序開(kāi)發(fā)公司、集團(tuán)企業(yè)網(wǎng)站建設(shè)等服務(wù)項(xiàng)目。為回饋新老客戶(hù)創(chuàng)新互聯(lián)還提供了豐滿(mǎn)免費(fèi)建站歡迎大家使用!
先貼正確配置
<?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:aop="http://www.springframework.org/schema/aop" xmlns:task="http://www.springframework.org/schema/task" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd"> <aop:aspectj-autoproxy></aop:aspectj-autoproxy> <task:annotation-driven/> <import resource="spring-datasource.xml"/> <import resource="spring-hessian-server.xml"/> <import resource="spring-remoting-dis.xml"/> <import resource="spring-remoting-worldeye.xml"/> <import resource="spring-activemq.xml"/> <import resource="spring-cxf-client.xml"/> <!-- 開(kāi)發(fā)配置 --> <beans profile="dev"> <context:property-placeholder location="classpath:config/application.properties, classpath:config/application-dev.properties"/> <import resource="spring-hadoop-dev.xml"/> </beans> <!-- 測(cè)試配置 --> <beans profile="test"> <context:property-placeholder location="classpath:config/application.properties, classpath:config/application-prd.properties, classpath:config/application-test.properties"/> <import resource="spring-hadoop-test.xml"/> </beans> <!-- 線上配置 --> <beans profile="prd"> <context:property-placeholder location="classpath:config/application.properties, classpath:config/application-prd.properties"/> <import resource="spring-hadoop.xml"/> </beans> </beans>
一. xml標(biāo)簽的xsd版本
spring-beans.xsd 文件不要指定版本,也可以使用高版本(起碼是3.1),原因是 spring profile 是3.1版本開(kāi)始的。
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" ...... xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
二. dispatcherServlet文件配置
web.xml中配置了 DispatcherServlet 的 contextConfigLocation,需要在 spring-dispatch.xml 添加 spring profile 的配置,配置項(xiàng)同上。
<!-- profile配置 --> <context-param> <param-name>spring.profiles.active</param-name> <param-value>prd</param-value> </context-param> <!-- Spring配置 --> <context-param> <param-name>contextConfigLocation</param-name> <param-value> classpath:config/spring/spring-context.xml classpath:config/spring/spring-security.xml </param-value> </context-param> ...... <!-- Spring Dispatcher配置 --> <servlet> <servlet-name>dispatcher</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> <param-name>contextConfigLocation</param-name> <param-value> classpath:config/spring/spring-hessian-server.xml classpath:config/spring/spring-dispatch.xml classpath:config/spring/spring-security.xml </param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet>
以上是“xml配置spring profiles需要注意什么”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!
標(biāo)題名稱(chēng):xml配置springprofiles需要注意什么
網(wǎng)頁(yè)鏈接:http://aaarwkj.com/article32/goddsc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供微信公眾號(hào)、域名注冊(cè)、營(yíng)銷(xiāo)型網(wǎng)站建設(shè)、網(wǎng)站導(dǎo)航、做網(wǎng)站、外貿(mào)建站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話(huà):028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)