1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| package com.iailab.framework.common.util.spring;
|
| import cn.hutool.extra.spring.SpringUtil;
|
| import java.util.Objects;
|
| /**
| * Spring 工具类
| *
| * @author iailab
| */
| public class SpringUtils extends SpringUtil {
|
| /**
| * 是否为生产环境
| *
| * @return 是否生产环境
| */
| public static boolean isProd() {
| String activeProfile = getActiveProfile();
| return Objects.equals("prod", activeProfile);
| }
|
| }
|
|