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
- IntelliJ
- context
- tomcat
- web.xml
- Mac
- grep
- JavaScript
- xargs
- bash
- Source
- Eclipse
- ssh
- find
- 줄바꿈 문자
- profile
- 단축키
- 네트워크
- plugin
- vscode
- netsh
- Quartz
- GIT
- lsof
- Windows 10
- Windows
- maVen
- VirtualBox
- resource
- port
- import
Archives
- Today
- Total
develog
[Spring] beans.xml 설정3, component-scan 본문
spring-config.xml
<beans> <context:component-scan base-package="com.my"/> </beans>
MyService.java
package com.my.service; @Service public class MyService { @Autowired private MyDao myDao; }
MyDao.java
package com.my.dao; @Repository public class MyDao { }
'Dev > Spring' 카테고리의 다른 글
[Spring] spring cron expression test (0) | 2019.06.21 |
---|---|
[Spring] beans.xml 설정2, annotation-config (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