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 |
Tags
- grep
- bash
- xargs
- Quartz
- context
- plugin
- profile
- ssh
- Windows
- find
- IntelliJ
- web.xml
- port
- lsof
- maVen
- resource
- GIT
- Mac
- 단축키
- JavaScript
- vscode
- import
- 네트워크
- 줄바꿈 문자
- VirtualBox
- netsh
- Windows 10
- Eclipse
- Source
- tomcat
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