분석 결과를 기반으로 Spring 전환 체크리스트 작성 #4

Merged
forge-bot merged 8 commits from forge/E2E-MINIMAX-DEV-001-attempt-2-run-25768e330737 into main 2026-07-16 02:50:03 +00:00
Showing only changes of commit 4f078f35ae - Show all commits

View file

@ -0,0 +1,18 @@
package com.example.e2eminimax.service;
import org.springframework.stereotype.Service;
@Service
public class MinimaxService {
public String processRequest(String input) {
if (input == null || input.isBlank()) {
throw new IllegalArgumentException("Input cannot be null or blank");
}
return "Processed: " + input;
}
public boolean validateInput(String input) {
return input != null && !input.isBlank();
}
}