Making use of the JPA and Spring Data JPA

In this section, we are going to wire the business logic we need for our application.

Because we have set up the configuration for the JPA and Spring Data JPA, and because we have defined our entities and their relationships, we can now use this model for time and energy-saving.

How to do it...

The following steps will guide you through the changes:

  1. In the edu.zipcloud.cloudstreetmarket.core.daos package, we can find the following two interfaces:
    public interface HistoricalIndexRepository { Iterable<HistoricalIndex> findIntraDay(String code, Date of); Iterable<HistoricalIndex> findLastIntraDay(String code); HistoricalIndex findLastHistoric(String code); } public interface TransactionRepository { Iterable<Transaction> ...

Get Spring MVC Cookbook now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.