mybatis에서 select문을 실행시킬 때 객체에 저장하는 과정에서 아래와 같은 에러가 발생했다. error:org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: Error instantiating class 클래스명 with invalid types () or values (). Cause: java.lang.NoSuchMethodException: 클래스명() select 결과를 저장하는 클래스는 아래와 같은 형식이었다. public class Test { private int a; private int b; public Test(int a, int ..