반응형
myBatis에서 table 생성하기
myBatis를 이용해서 table를 생성하기 위해서는 우선 Controller에서 테이블을 생성할 수 있는 문장을 먼저 만든다.
Controller
String create_table = "create table student_"+snum+" (num number not null, name varchar2(20) not null)";
Map<String,String> map = HashMap<String,String>();
map.put("create_table",create_table);
---------------------
Mapper
<select id="createTable" parameterType="map">
${create_table} <---- 문자열 대체(String Substitution)
</seclet>
반응형
'Spring' 카테고리의 다른 글
Spring에서 HttpSessionListener의 사용 (0) | 2016.09.30 |
---|---|
myBatis에서 파라미터 전송하기 (0) | 2016.09.30 |
ojdbc6 maven 설정 (0) | 2016.09.29 |
@Valid Annotation을 이용한 유효성 체크 (0) | 2016.09.29 |
스프링에서 커스텀 데이터 처리할 때 java.sql.Date 처리하기 (0) | 2016.09.29 |