BLOG297 [오류]Could not autowire field 123456789org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.zerock.test.BoardDAOTest': Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field: private persistence.BoardDAO org.zerock.test.BoardDAOTest.dao; nested exception is org.springframework.beans.factory.NoSuch.. 2018. 8. 19. [오류]Injection of autowired dependencies failed 12345org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.zerock.test.BoardDAOTest': Injection of autowired dependencies failed;nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field: private persistence.BoardDAO org.zerock.test.BoardDAOTest.dao;nested exception is org.springframework.beans.factory.NoSuchBeanDe.. 2018. 8. 19. [오류]경로깨짐 처음 접속하는데 CSS깨짐 현상이 나타났다.CSS는 스크립트로 내부 폴더에서 가져오는 데 깨졌다는 것은 경로 문제 a태그의 경로를 클릭해보았더니 기본 URL + 스크립트 경로였다. 그런데 나는 Context Root를 'controller' 두었기에 경로 깨짐이 발생한 것이였다.제대로 동작하려면 localhost:8080/controller/resources/bootstrap/css/bootstap.min.css으로 접속해야 했던 것 그래서 context root 를 / (루트)로 변경하니 이상 없이 잘 나왔다. 실제, 알맞은 경로로 스크립트를 접속하면 스크립트가 웹 브라우저에 나타난다. 2018. 8. 19. [2-2.영속계층, 비즈니스계층]2.DAO생성과 XML Mapper 작업 1. XML 네임 스페이스 추가 2. SessionFactoy, SqlSessionTemplate 추가123456789101112131415161718192021 cs 3. BoardBAO 생성1234567891011121314151617181920package persistence; import java.util.List; import domain.BoardVO; public interface BoardDAO { public void create(BoardVO vo) throws Exception; public BoardVO read(Integer bno) throws Exception; public void update(BoardVO vo) throws Exception; public void del.. 2018. 8. 18. [2-2.영속계층, 비즈니스계층]1.BoardVO 작성 1. BoardVO작성테이블의 구조화를 객체화 시킴 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384package domain; import java.util.Date; public class BoardVO { private Integer bno; private String title; private String content; private String writer; private Date regdate; private int viewcnt; public BoardVO(.. 2018. 8. 18. [오류]localhost 페이지를 찾을 수 없음 localhost 페이지를 찾을 수 없음다음 웹 주소(http://localhost:8080/controller/home.jsp)에 대해 발견된 웹페이지가 없습니다. 1) path 설정 2) 포트 설정 3) url설정4) 프로젝트 - 웹서버등록 5) 서버 설정 톰캣 오류 화면 1234org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [spring/root-context.xml]:Invocation of init method failed; nested exception is java.io.FileNotFoundE.. 2018. 8. 18. 이전 1 ··· 21 22 23 24 25 26 27 ··· 50 다음