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 |
Tags
- profile
- maVen
- Quartz
- GIT
- bash
- web.xml
- IntelliJ
- JavaScript
- 줄바꿈 문자
- Windows 10
- vscode
- 단축키
- Mac
- xargs
- import
- Windows
- port
- plugin
- find
- VirtualBox
- Source
- Eclipse
- ssh
- context
- resource
- grep
- netsh
- 네트워크
- tomcat
- lsof
Archives
- Today
- Total
develog
[Spring] beans.xml 설정1, 기본 본문
spring-config.xml
<beans> <bean id="myService" class="com.my.service.MyService"> <property name="myDao" ref="myDao"/> </bean> <bean id="myDao" class="com.my.dao.MyDao"/> </beans>
MyService.java
package com.my.service; public class MyService { private MyDao myDao; public void setMyDao(MyDao myDao) { this.myDao = myDao; } public MyDao getMyDao() { return myDao; } }
MyDao.java
package com.my.dao; public class MyDao { }
'Dev > Spring' 카테고리의 다른 글
[Spring] beans.xml 설정3, component-scan (0) | 2015.08.28 |
---|---|
[Spring] beans.xml 설정2, annotation-config (0) | 2015.08.28 |
[Spring] beans.xml (0) | 2015.06.04 |
[Spring] Spring3 AOP 설정, xml or java (0) | 2015.06.04 |
[Spring] static method injection (0) | 2014.11.11 |
Comments