完善项目

This commit is contained in:
2025-04-21 11:17:19 +08:00
parent 11a207a10a
commit f77777a055
24 changed files with 747 additions and 25 deletions

View File

@@ -0,0 +1,22 @@
package com.ping.study.controller.tx;
import com.ping.study.service.tx.TxSportTokenRefreshService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("/tx")
public class TokenRefreshController {
@Autowired
private TxSportTokenRefreshService txSportTokenRefreshService;
@RequestMapping("/refresh")
public Boolean refreshToken()
{
return txSportTokenRefreshService.refreshCookies();
}
}