Advertisement
Guest User

general spring modulith package

a guest
Dec 29th, 2024
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Arduino 1.17 KB | Source Code | 0 0
  1. src/
  2. ├── main/
  3. │   ├── java/
  4. │   │   ├── com/
  5. │   │   │   └── yourpackage/
  6. │   │   │       ├── controller/         // Holds all your controllers
  7. │   │   │       ├── service/            // Service layer
  8. │   │   │       │   ├── request/        // Handles request objects
  9. │   │   │       │   ├── response/       // Handles response objects
  10. │   │   │       │   └── impl/           // Implementation of service classes
  11. │   │   │       ├── repository/         // Repository layer
  12. │   │   │       │   └── domain/         // Holds your entities
  13. │   │   │       ├── config/             // Configuration classes (optional)
  14. │   │   │       └── util/               // Utility classes (optional)
  15. │   │
  16. │   └── resources/
  17. │       ├── application.properties      // Application configuration
  18. │       └── static/                     // Static resources (if any)
  19. └── test/
  20.     ├── java/
  21.     │   └── com/
  22.     │       └── yourpackage/            // Test cases
  23.     └── resources/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement