adapter객체 못찾오는 부분 수정
This commit is contained in:
@@ -224,4 +224,12 @@ public class STDMessageDAO extends BaseDAO {
|
||||
throw new DAOException(ExceptionUtil.getErrorCode(e, "RECEAICKE111"));
|
||||
}
|
||||
}
|
||||
|
||||
// jwhong 추가
|
||||
public StandardMessageInfo getSTDMsgByPath(String apiFullPath) throws DAOException {
|
||||
Optional<StandardMessageInfo> optional = standardMessageInfoLoader.findByApiFullPath(apiFullPath);
|
||||
return optional.orElseThrow(() -> new DAOException("해당 full path의 TSEAIHS04 에 데이터가 없습니다."));
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user