반응형
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
- C언어
- web 개발
- web
- paragraph
- html
- bccard
- 자료구조
- 데이터전문기관
- inorder
- discrete_scatter
- vscode
- broscoding
- 결합전문기관
- pycharm
- 웹 용어
- java역사
- CES 2O21 참가
- KNeighborsClassifier
- 재귀함수
- web 사진
- postorder
- cudnn
- Keras
- mglearn
- tensorflow
- 머신러닝
- 대이터
- CES 2O21 참여
- classification
- web 용어
Archives
- Today
- Total
bro's coding
Spring.annotation 본문
반응형
package org.kosta.model;
import org.springframework.stereotype.Repository;
// spring container에게 객체 생성 하도록 명시
// @Repository는 영속성 계층의 bean 생성할 때 명시하는 annotation
@Repository // spring container가 해당 클래스로 객체를 생성할 때 bean id는 소문자로 시작하는 클래스명으로 만든다.
public class MemberDAOImpl implements MemberDAO {
@Override
public void register(String memberInfo) {
System.out.println(memberInfo + "등록");
}
}
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd">
<context:component-scan base-package="org.kosta" />
</beans>
반응형
'[IT] > Spring' 카테고리의 다른 글
spring.객체 안 객체 접근(view) (0) | 2021.06.02 |
---|---|
Spring.MVC (0) | 2021.06.02 |
Spring.AOP적용 단계 (0) | 2021.06.01 |
spring.web.xml 설정 (0) | 2021.06.01 |
Spring.설정 방식 (0) | 2021.05.31 |
Spring.MyBatis.join.vo.resultMap (0) | 2021.05.31 |
Spring.MyBatis.인스턴스 객체 접근 (0) | 2021.05.31 |
param.productNo 값 넣고 insert (0) | 2021.05.28 |
Comments