Develop the Business Service Tier
Let's see how the business service can be developed for a single table inheritance scenario.
We'll cover the following...
“Find all records” operation
We will start with the “find all records” operation.
Press + to interact
@RunWith( SpringJUnit4ClassRunner.class )@ContextConfiguration( locations = { "classpath:context.xml" } )@TransactionConfiguration( defaultRollback = true )@Transactionalpublic class ProtocolServiceImplTest {@Autowiredprivate ProtocolService service;@Testpublic void testFindAll() {Assert.assertEquals(0L, service.findAll().size());}}
Next, let’s learn how to code the corresponding “find all records” method in the business service.
Press + to interact
@Service@Transactionalpublic class ProtocolServiceImpl implements ProtocolService {@Autowiredprivate ProtocolDao protocolDao;@Autowiredprivate ProtocolMapper protocolMapper;@Overridepublic List<ProtocolDto> findAll() {List<Protocol> protocols = protocolDao.getAll();List<ProtocolDto> protocolDtos = new ArrayList<ProtocolDto>();for(Protocol protocol : protocols){protocolDtos.add(protocolMapper.mapEntityToDto(protocol));}return protocolDtos;}}
Mappers
The mapper typically has two operations that are used to convert data access objects to ...