EASY7
[spring] @Resource가 안될때 본문
내가 javaEE+spring framework를 깔아서 그런지
@Resource가 되지 않았다(javaSE에 있다고 한다.)
1. javaSE의 annotation.jar를 첨부함.
javax.annotation_1.2.0.v201602091430.jar
2. xml에서 한줄 꼭 써줘야함
<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"
xmlns:c="http://www.springframework.org/schema/c"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:util="http://www.springframework.org/schema/util"
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.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.3.xsd">
<context:component-scan base-package="com.springinaction.springidol"/><!-- 꼭 써줘야하는 한줄 -->
'개발 공부 > JAVA' 카테고리의 다른 글
jstl c tag 사용할 때 (0) | 2018.05.25 |
---|---|
Class.class에 대해서 (0) | 2018.04.14 |
parseInt와 valueOf의 차이점 (0) | 2017.05.15 |
jdbc이용하기 위해 WEB-INF 복사할 것들 (0) | 2016.12.11 |
JAVA 자바 책 추천 (0) | 2016.05.31 |