스프링 영화코드 구해서 DB에 Insert MovieService for(int i = 0; i < cgvMvList.size(); i++) { int mvCheck = mvdao.selectMvcheck(cgvMvList.get(i).getMvname(), cgvMvList.get(i).getMvopen()); if(mvCheck ==0 ) { String mvcode = "MV"; String mvSelect = mvdao.getMvSelect(); if (mvSelect == null) { mvcode = mvcode +"001"; } else { System.out.println("mvSelect : " + mvSelect); mvSelect = mvSelect.substring(2); int m..