spring-boot 免xml配置直接使用spring

spring-boot在maven的dependency里配置URL为:http://repo.spring.org/milestone之后,maven会自行下载spring-boot的依赖


要使用spring-boot,首先要使用spring-annotation

对于所有的bean要标注:@Component

切面要标注:@Aspect ,@Pointcut,@After等

对于主类,要标注:@Configuration,@Componentscan

之后spring-boot会自行搜索所有的标注了component等标记的类,并在spring中注册。

为了能够使注册生效,对于需要调用的类,不能直接New,必须使用spring的ApplicationContext的getBean()方法生成才行。


spring-boot虽然刚起步,但是确实开发使用起来非常方便,尤其对于那些动辄就要写XML的环境,非常建议使用spring-boot。有些人认为这种将配置写到代码中的方法不好,以后不好修改。但实际上在软件工程中,已经生成了的组件通常都不应该再被改变!因而使用spring-boot将迫使开发人员养成更好的开发习惯。

你可能感兴趣的:(spring-boot 免xml配置直接使用spring)