springBoot注解的复习

将方法的返回值交给ioc管理:

@Configuration
public class UserServiceImpl implements UserService {
    @Bean("stringBeanTest")
    public String beanTest1() {
        return "bean的ces";
    }
}

这就很有趣,都忘光了

读取配置文件:

    @Value("${quxiao.test}")
    String name;

 yml:

quxiao:
  test: nidie

你可能感兴趣的:(spring,boot,java,后端,1024程序员节)