Table Name | Class Name |
---|
Type Overrides
SQL Type | Java Type |
---|
dto
Primary Data Transfer Object used for generic data encapsulation.
dto-create
DTO structure for create operations.
dto-update
DTO structure for update operations.
dto-request
DTO used for inbound HTTP requests from clients or APIs.
dto-response
DTO used for outbound HTTP responses sent to clients.
controller
REST controller exposing HTTP endpoints for client interaction.
entity
JPA entity or persistence model mapping directly to a database table.
mapper
Mapper class or interface for transforming between entities and DTOs.
repository
Spring Data repository interface for database access operations.
service
Service interface defining business logic contracts.
service-impl
Concrete implementation of the service interface with transactional logic.
spec-builder
JPA Specification builder for dynamic queries
src └── main ├── java │ └── com │ └── example │ └── demo │ ├── controller │ │ ├── UserController.java │ │ └── UserProfileController.java │ ├── dto │ │ ├── UserCreateDto.java │ │ ├── UserDto.java │ │ ├── UserRequest.java │ │ ├── UserResponse.java │ │ ├── UserUpdateDto.java │ │ ├── UserProfileCreateDto.java │ │ ├── UserProfileDto.java │ │ ├── UserProfileRequest.java │ │ ├── UserProfileResponse.java │ │ └── UserProfileUpdateDto.java │ ├── entity │ │ ├── User.java │ │ └── UserProfile.java │ ├── mapper │ │ ├── UserMapper.java │ │ └── UserProfileMapper.java │ ├── repository │ │ ├── UserRepository.java │ │ └── UserProfileRepository.java │ ├── service │ │ ├── impl │ │ │ ├── UserServiceImpl.java │ │ │ └── UserProfileServiceImpl.java │ │ ├── UserService.java │ │ └── UserProfileService.java │ ├── shared │ │ └── SpecBuilder.java │ └── DemoApplication.java └── resources └── application.properties └── .git-ignore └── pom.xml
Contact Us
Have questions, feedback, or a feature request? We'd love to hear from you.
Send a Message