fix(user-service): resolve Spring Cloud OpenFeign and Jakarta servlet dependencies
Some checks failed
test/timeline-server/pipeline/head There was a failure building this commit

- Add spring-cloud-starter-openfeign dependency for Feign client support
- Add jakarta.servlet-api dependency for Spring Boot 3.x compatibility
- Update HttpServletRequest import from javax.servlet to jakarta.servlet in SmartCollectionController
- Document backend build fixes and dependency migration in BACKEND_FIXES_SUMMARY.md
- Resolve compilation errors caused by missing Spring Cloud and Jakarta EE dependencies
This commit is contained in:
2026-02-25 15:27:20 +08:00
parent 10ef5918fc
commit 32097e57d7
3 changed files with 162 additions and 1 deletions

View File

@@ -9,7 +9,7 @@ import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import javax.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletRequest;
import java.util.List;
/**