We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 691d669 commit f948a46Copy full SHA for f948a46
spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc
@@ -358,18 +358,20 @@ Here is a typical layout:
358
----
359
com
360
+- example
361
- +- myproject
+ +- myapplication
362
+- Application.java
363
|
364
- +- domain
+ +- customer
365
| +- Customer.java
366
- | +- CustomerRepository.java
367
- |
368
- +- service
+ | +- CustomerController.java
369
| +- CustomerService.java
+ | +- CustomerRepository.java
370
371
- +- web
372
- +- CustomerController.java
+ +- order
+ +- Order.java
+ +- OrderController.java
373
+ +- OrderService.java
374
+ +- OrderRepository.java
375
376
377
The `Application.java` file would declare the `main` method, along with the basic
0 commit comments