/* * 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 22:01 **/ @Component @Profile("test") public class Test { public Test() { System.out.println("Test bean has loaded!"); } }