Dev.java 471 字节
Newer Older
老丢丢's avatar
前端  
老丢丢 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
/*
 * Copyright (c) 2019, PANNK and/or its affiliates. All rights reserved.
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 */
package com.pannk.demo.commonconfig.profiles;

import org.springframework.context.annotation.Profile;
import org.springframework.stereotype.Component;

/**
 * @author:wolf
 * @date:2020/11/2 21:59
 **/
@Component
@Profile("dev")
public class Dev {
    public Dev() {
        System.out.println("Dev bean has loaded!");
    }
}