MCPcopy Create free account
hub / github.com/castello/spring_basic / selectAll

Method selectAll

ch4/BoardDaoImpl.java:37–40  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

35 } // int insert(String statement, Object parameter)
36
37 @Override
38 public List<BoardDto> selectAll() throws Exception {
39 return session.selectList(namespace+"selectAll");
40 } // List<E> selectList(String statement)
41
42 public BoardDto select(Integer bno) throws Exception {
43 return session.selectOne(namespace + "select", bno);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected