欧美一级特黄大片做受成人-亚洲成人一区二区电影-激情熟女一区二区三区-日韩专区欧美专区国产专区

xml配置springprofiles需要注意什么

小編給大家分享一下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)

網(wǎng)站建設(shè)網(wǎng)站維護(hù)公司
日韩一卡一卡在线观看| 亚洲伊人av第一页在线观看| 欧美日韩在线一区2区| 亚洲中文字幕女同系列av专区| 亚洲永久免费黄色av| 色婷婷亚洲一区二区三区| 亚洲欧美日韩有码一区| 精品人妻aⅴ一区二区| 国产成人亚洲合色婷婷| 色琪琪原网另类欧美日韩| 精品人妻系列一区二区| 国产性色精品一区二区| 九九久久九九精美视频| 在线中文字幕日韩精品| 国产亚洲综合久久系列| 国内极品尤物视频在线| 亚洲一区二区三区熟女少妇| 精品一区二区久久久久久网精| 亚洲精品理论片在线观看| 中文字幕有码手机在线看| 欧美亚洲国产精品久久久| 亚洲男人堂色偷偷一区| 婷婷丁香六月激情综合| 日韩精品中文乱码在线观看| 欧美成人免费做真爱高潮| 亚洲av成人在线资源| 成熟性性生活免费视频| 护士一级特黄特色大片| 加勒比久草免费在线观看| 国产中文字幕自拍视频| 亚洲黄色暴力一区视频| 中文字幕乱码亚洲精品一区| 日本女同一区二区高清| 久亚洲精品九九久久99| 日本人妻成人免费大片| 午夜精品一区二区三区在线视频| av影片在线观看亚洲天堂| 麻豆文化传媒免费网址| 国产亚洲一区二区三区午夜| 国产黄片免费高清观看| 久久亚洲精品中文字幕一|