이전글 http://holy1017.tistory.com/36.....리포지터리란다...뭐 그렇다 치자서비스.자바 열자이젠 풀경로 쓰기 귀찬다@Servicepublic class TestService {//빈즈에 등록된 똑같은 클래스의 객체를 찿아서 가져옴@Autowiredprivate TestDAO dao; public String test() {return this.toString();}} 오류는 이제 알아서 잡을거라 믿는다모르면 이전글 보고와라그리고 메소드 수정좀 하겠다public String test() {return this.toString();}를public String testService() {return this.toString();}로 바꾸자바꾸는 단축키 이전에 알려줬다단축키나 해당 기..
이전글(http://holy1017.tistory.com/35)에서 서비스 파일만 생성하다 끝났다.일단 지금상태에서 실행해보면 홈페이지는 정상적으로 안뜨고(어라?)이클립스 콘솔창에는 아래같은 핵심 오류가 하나 있다.org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'testController': Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field: private holy.com.test.Test..