zoukankan      html  css  js  c++  java
  • Spring的profile属性

    使用示例

    //注解方式
    public class DataSourceConfig {
        @Bean
        @Profile("prod")    
        public DataSource dataSource(){
            return null;
        }
    }
    //xml方式
    <beans profile="prod">
        .............................
    </beans>

    属性含义

    通过profile标记不同的环境,可以通过设置spring.profiles.active和spring.profiles.default激活指定profile环境。如果设置了active,default便失去了作用。如果两个都没有设置,那么带有profiles的bean都不会生成。

    有多种方式来设置这两个属性:

    • 作为DispatcherServlet的初始化参数;
    • 作为web应用的上下文参数;
    • 作为JNDI条目;
    • 作为环境变量; System.set("spring.profiles.active","prod")
    • 作为JVM的系统属性; -Dspring.profiles.active="prod"
    • 在集成测试类上,使用@ActiveProfiles注解配置。

    以前两种方式举例,它们都可以在web.xml中设置:

    <?xml version="1.0" encoding="UTF-8"?>
    <web-app version="3.0" 
        xmlns="http://java.sun.com/xml/ns/javaee" 
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
        xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
        http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
      <display-name></display-name>    
      <welcome-file-list>
        <welcome-file>index.jsp</welcome-file>
      </welcome-file-list>
      <context-param>
          <param-name>applicationContext</param-name>
          <param-value>/applicationContext.xml</param-value>
      </context-param>
      <!-- 在上下文中设置profile的默认值 -->
      <context-param>
          <param-name>spring.profiles.default</param-name>
          <param-value>dev</param-value>
      </context-param>
      
      <listener>
          <listener-class>
              org.springframework.web.context.ContextLoaderListener
          </listener-class>
      </listener>
      
      <servlet>
          <servlet-name>appServlet</servlet-name>
          <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
          <!-- 在servlet中设置profile的默认值 -->
          <init-param>
          <param-name>spring.profiles.default</param-name>
          <param-value>dev</param-value>
          </init-param>
          <load-on-startup>1</load-on-startup>
      </servlet>
      <servlet-mapping>
          <servlet-name>appServlet</servlet-name>
          <url-pattern>/</url-pattern>
      </servlet-mapping>
    </web-app>
  • 相关阅读:
    Visual Studio 出现生成错误 ,要继续并运行上次的成功生成吗?
    postgresql迁mysql之后兼容性问题
    Java中把十进制转为二进制(判断有效的ip地址和掩码)
    Java中如何把整数变为二进制输出
    Java二进制与十进制转换及位运算
    面试知识点总结之开放性问题
    面试知识点总结之常用设计模式
    linux下VIRT,RES,SHR的含义
    JSP JS 日期控件的下载、使用及注意事项
    Html5实现头像上传和编辑,保存为Base64的图片过程
  • 原文地址:https://www.cnblogs.com/wade-luffy/p/6066932.html
Copyright © 2011-2022 走看看