[OrderPost 테이블] @Getter @ToString public class OrderPost { private Long id; private String orderId; private Long postId; private int count; } @Mapper @Repository public interface OrderRepository { @Select("select * from orderpost") List getOrders(); } 코드에 문제가 없는거같은데.. 아래와 같이 오류가 발생했다. (아니 이렇게 간단한 코드에 문제랄게 뭐가있어 대체..ㅜㅜ) Servlet.service() for servlet [dispatcherServlet] in context with path [] thre..