23 lines
434 B
Java
23 lines
434 B
Java
|
|
package com.zhgd.xmgl.util;
|
||
|
|
|
||
|
|
import org.springframework.beans.factory.annotation.Value;
|
||
|
|
import org.springframework.stereotype.Component;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 环境判断
|
||
|
|
*/
|
||
|
|
@Component
|
||
|
|
public class ProfileJudgeUtil {
|
||
|
|
@Value("${spring.profiles.active}")
|
||
|
|
private String activeProfile;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 是否金林湾生产环境
|
||
|
|
*
|
||
|
|
* @return
|
||
|
|
*/
|
||
|
|
public boolean isJlw() {
|
||
|
|
return "ljw".equals(activeProfile);
|
||
|
|
}
|
||
|
|
}
|