Skip to content

Commit f948a46

Browse files
renjithgrsnicoll
authored andcommitted
Update application layout to show packaging by features
See gh-9907
1 parent 691d669 commit f948a46

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -358,18 +358,20 @@ Here is a typical layout:
358358
----
359359
com
360360
+- example
361-
+- myproject
361+
+- myapplication
362362
+- Application.java
363363
|
364-
+- domain
364+
+- customer
365365
| +- Customer.java
366-
| +- CustomerRepository.java
367-
|
368-
+- service
366+
| +- CustomerController.java
369367
| +- CustomerService.java
368+
| +- CustomerRepository.java
370369
|
371-
+- web
372-
+- CustomerController.java
370+
+- order
371+
+- Order.java
372+
+- OrderController.java
373+
+- OrderService.java
374+
+- OrderRepository.java
373375
----
374376

375377
The `Application.java` file would declare the `main` method, along with the basic

0 commit comments

Comments
 (0)