Spring

    [setting] Root context, Servlet context 차이점

    spring 설정에 root context , servlet context 설정파일이 있다. root webapplication context는 비지니스 혹은 목적을 위한 service layer와 해당 service layer에서 database와 연결되는 repository layer를 구성하는 bean들을 설정 servlet webapplication context는 client 요청을 받기 위한 entry point로서 servlet의 context설정 servlet context는 root context의 bean를 참조할 수 있지만, 반대의 경우는 불가능하다. servlet context에는 controller, view resolver , handler mapping등의 설정root cont..

    [web] textarea 줄바꿈

    게시판을 구성할 때 글내용을 textarea 안에 입력받고 DB로 보내서 저장하도록 하였는데, 확인해보니 엔터키를 입력한 부분에서 줄바꿈이 되지 않고 그냥 띄어쓰기로 나타나는 문제가 있었다. 실제로 DB안에 데이터에는 엔터가 입력된채로 저장이 되는 데, 이것을 다시 select로 가져올때에 공백으로 인식하는 듯 하였다. 해결방법은 view에서 controller로 data를 넘겨줄 때, 엔터입력한 부분을 html tag인 로 입력을 해주는 것이다. 1234567891011@RequestMapping(value="/sample/insertBoard") public ModelAndView insertBoard(CommandMap commandMap, HttpServletRequest request) thro..