package com.sy.bean; import org.springframework.beans.factory.annotation.Value; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; @Configuration public class DEVDEBUG { @Value("${devdebug}") private Boolean debug; @Bean("devdebug") public Boolean getDebug(){ System.out.println("devdebug:"+debug); return debug; } }