码迷,mamicode.com
首页 > 编程语言 > 详细

Spring @Profile标签使用

时间:2020-04-03 11:44:01      阅读:106      评论:0      收藏:0      [点我收藏+]

标签:one   inf   pom   开发   xml配置   nbsp   注入   span   active   

pom.xml配置

<profiles>
        <profile>
            <id>开发</id>
            <properties>
                <profiles.active>dev</profiles.active>
            </properties>
            <activation>
                <activeByDefault>true</activeByDefault>
            </activation>
        </profile>
        <profile>
            <id>测试</id>
            <properties>
                <profiles.active>test</profiles.active>
            </properties>
        </profile>
        <profile>
            <id>生产</id>
            <properties>
                <profiles.active>prod</profiles.active>
            </properties>
        </profile>
    </profiles>

技术图片

 

 代码样例:

技术图片

 

 当由开发环境启动时@Component注解的注入bean才起到效果。其他环境不注入该bean

Spring @Profile标签使用

标签:one   inf   pom   开发   xml配置   nbsp   注入   span   active   

原文地址:https://www.cnblogs.com/SpringJson/p/12625453.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!