1. 程式人生 > >spring註解和增強

spring註解和增強

value pac bsp spring註解 www. framework spring val 註解

1.添加xsd約束

技術分享

xmlns:context="http://www.springframework.org/schema/context"
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd

2. component:組件

<context:component-scan base-package=""></context:component-scan>
3.幾種註解

@Component("info") 不分層
@Repository("info") dao
@Service("info") biz
@Controller("info") action

@Value() 在一個類中註入普通屬性值

@Resource 在一個類中註入域屬性

@Autowired 在一個類中註入域屬性

技術分享

技術分享

spring註解和增強