mvc

· Spring
VO객체를 만들어 JSON으로 출력을 하다보면 상황에 따라 필요 없는 값을 모두 보여준다. 기본적인 스프링 MVC 구조를 예를 들어보겠다! /* VO */ public class BoardVO { private String id; private String title; private String contents; private String link; /* Getter */ /* Setter */ /* ToString */ } /* DAO */ @Repository public class BoardDAO { @Autowired private SqlSession session; private String namespace = "com.xxx.xxx.xxx.mapper."; public List selectB..
· Spring
1. MyBatis org.mybatis mybatis 3.2.8 2. MyBatis Spring org.mybatis mybatis-spring 1.2.2 3. root-context.xml 내용 추가 4. src/main/resources 파일 추가 (mybatis-config.xml) 5. src/main/resources 폴더와 파일 추가 (Mapper.xml) ex) 1) mappers -> com -> ex -> exercise -> board -> mapper 순으로 폴더 생성 2) Mapper.xml 생성 BoardMapper.xml http://mybatis.org/dtd/mybatis-3-mapper.dtd"> m.ex.exercise.board.mapper"> INSERT INTO b..
공모
'mvc' 태그의 글 목록