[Refactor] lab -> VirtualWorkspace와 Judge BC로 분할#175
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| @Bean | ||
| public void testA() { |
There was a problem hiding this comment.
Remove void @bean that prevents JudgingService from starting
JudgingService declares @Bean public void testA() which Spring processes as a configuration bean. @bean methods are required to return a bean instance; a void-returning factory method triggers a BeanDefinitionStoreException during context initialization, causing the application to fail to start whenever the service is scanned. Drop the @bean annotation or return a real bean so the context can boot.
Useful? React with 👍 / 👎.
This reverts commit 8273a3d.
No description provided.