-
Notifications
You must be signed in to change notification settings - Fork 0
Rename Package #3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
WalkthroughThis update standardizes the package naming convention across the entire Spring Boot Bootcamp project by changing all occurrences of the Changes
Sequence Diagram(s)sequenceDiagram
participant Test as UserServiceTest
participant Service as UserService
participant Repo as UserRepository
Test->>Service: updateUser(userId, userReq)
alt User exists
Service->>Repo: findById(userId)
Repo-->>Service: Optional<UserEntity>
Service->>Repo: save(updatedUser)
Repo-->>Service: UserEntity
Service-->>Test: updated UserEntity
else User does not exist
Service->>Repo: findById(userId)
Repo-->>Service: Optional.empty
Service-->>Test: throws UserNotFoundException
end
Poem
Tip ⚡💬 Agentic Chat (Pro Plan, General Availability)
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (56)
🧰 Additional context used🧬 Code Graph Analysis (8)spring-boot-bootcamp/src/main/java/in/newdevpoint/bootcamp/controller/AuthController.java (2)
spring-boot-bootcamp/src/main/java/in/newdevpoint/bootcamp/usecase/SystemService.java (1)
spring-boot-bootcamp/src/main/java/in/newdevpoint/bootcamp/controller/SystemController.java (1)
spring-boot-bootcamp/src/main/java/in/newdevpoint/bootcamp/controller/UserV1Controller.java (1)
spring-boot-bootcamp/src/main/java/in/newdevpoint/bootcamp/service/UserService.java (1)
spring-boot-bootcamp/src/test/java/in/newdevpoint/bootcamp/UserUseCaseTest.java (1)
spring-boot-bootcamp/src/main/java/in/newdevpoint/bootcamp/usecase/UserUseCase.java (1)
spring-boot-bootcamp/src/test/java/in/newdevpoint/bootcamp/UserServiceTest.java (1)
🪛 LanguageToolspring-boot-bootcamp/docs/7. Spring Boot Advanced/7.1 Spring Boot Advanced - Aspect Oriented Programming AOP in Spring Boot.md[typographical] ~76-~76: Two consecutive dots (DOUBLE_PUNCTUATION) 🔇 Additional comments (93)
✨ Finishing Touches
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
Docstrings generation was requested by @developer-shubham101. * #3 (comment) The following files were modified: * `spring-boot-bootcamp/src/main/java/in/newdevpoint/bootcamp/aop/LoggingAspect.java` * `spring-boot-bootcamp/src/main/java/in/newdevpoint/bootcamp/exceptions/UserAlreadyExistsException.java` * `spring-boot-bootcamp/src/main/java/in/newdevpoint/bootcamp/exceptions/UserNotFoundException.java`
|
Note Generated docstrings for this pull request at #4 |
Summary by CodeRabbit
Refactor
com.exampletoin.newdevpointacross the project, including documentation, configuration files, and code examples.Tests
Documentation