MCPcopy Index your code
hub / github.com/castello/spring_basic / read

Method read

ch4/BoardServiceImpl.java:35–41  ·  view source on GitHub ↗
(Integer bno)

Source from the content-addressed store, hash-verified

33 }
34
35 @Override
36 public BoardDto read(Integer bno) throws Exception {
37 BoardDto boardDto = boardDao.select(bno);
38 boardDao.increaseViewCnt(bno);
39
40 return boardDto;
41 }
42
43 @Override
44 public List<BoardDto> getPage(Map map) throws Exception {

Callers

nothing calls this directly

Calls 2

selectMethod · 0.65
increaseViewCntMethod · 0.65

Tested by

no test coverage detected