Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | 6 | |
| 7 | 8 | 9 | 10 | 11 | 12 | 13 |
| 14 | 15 | 16 | 17 | 18 | 19 | 20 |
| 21 | 22 | 23 | 24 | 25 | 26 | 27 |
| 28 | 29 | 30 | 31 |
Tags
- bash
- VirtualBox
- GIT
- IntelliJ
- ssh
- JavaScript
- 단축키
- resource
- grep
- Windows 10
- Windows
- import
- profile
- port
- 줄바꿈 문자
- vscode
- find
- Quartz
- netsh
- Eclipse
- Source
- lsof
- tomcat
- xargs
- web.xml
- 네트워크
- plugin
- maVen
- context
- Mac
Archives
- Today
- Total
develog
[Spring] beans.xml 설정2, annotation-config 본문
spring-config.xml
<beans>
<context:annotation-config/>
<bean id="myService" class="com.my.service.MyService"/>
<bean id="myDao" class="com.my.dao.MyDao"/>
</beans>
MyService.java
package com.my.service;
public class MyService {
@Autowired
private MyDao myDao;
}
MyDao.java
package com.my.dao;
public class MyDao {
}
'Dev > Spring' 카테고리의 다른 글
| [Spring] spring cron expression test (0) | 2019.06.21 |
|---|---|
| [Spring] beans.xml 설정3, component-scan (0) | 2015.08.28 |
| [Spring] beans.xml 설정1, 기본 (0) | 2015.08.28 |
| [Spring] beans.xml (0) | 2015.06.04 |
| [Spring] Spring3 AOP 설정, xml or java (0) | 2015.06.04 |
Comments