본문 바로가기

Spring

myBatis에서 table 생성하기

반응형

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>


반응형