Move the Books application into example.app.books.

Move the LibraryService into example.app.library.
This commit is contained in:
John Blum
2019-06-10 18:49:04 -07:00
parent 099a030028
commit aac1e8a6e6
15 changed files with 63 additions and 57 deletions

View File

@@ -22,7 +22,7 @@ annotation:
.`Customer` entity class
[source,java]
----
package example.app.model;
package example.app.books.model;
import ...;
@Region("Customers")
@@ -42,7 +42,7 @@ Declare your _Repository_ (a.k.a. {wikipedia-docs}/Data_access_object[Data Acces
.`CustomerRepository` for peristing and accessing `Customers`
[source,java]
----
package example.app.repo;
package example.app.books.repo;
import ...;