Compare commits

...

4 Commits

Author SHA1 Message Date
mashuo ea830f27d4
Pre Merge pull request !402 from mashuo/springboot3 2025-05-28 01:52:59 +00:00
若依 ffce2af11e
!412 升级到springboot3后 HttpServletResponse的包名发生变化
Merge pull request !412 from coach-tam/N/A
2025-05-28 01:52:58 +00:00
coach-tam aeb698985b
升级到springboot3后 HttpServletResponse的包名发生变化
Signed-off-by: coach-tam <yaorange2019@sina.com>
2025-05-28 01:44:11 +00:00
mashuo 245e0b76f9
fix: 代码生成javax替换为jakarta 2025-03-31 01:17:21 +00:00
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ package ${packageName}.controller;
import java.util.List;
import java.io.IOException;
import javax.servlet.http.HttpServletResponse;
import jakarta.servlet.http.HttpServletResponse;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;