
DB연동이 잘 되었는지, 메일보내기와, 업로드, 다운로드 TEST 해보자 1. mapper를 보고 DAO을 작성한다. public interface TestDao { String selectToday(); int selectSum(HashMap map); int selectMul(HashMap map); } 2. service 작성 (1개의 인터페이스 2개의 클래스 추가) TestService public interface TestService { String selectToday(); int selectSum(int n1, int n2); int selectMul(int n1, int n2, int n3); } TestServiceImpl @Service("testService") @Transactio..