到目前爲止的進度已經完成了 99% ,接下要進行測試和教學之 jwt token 的使用。
我們要建立一個測試的 api ,由於只是測試寫得非常簡單,就不用三層式架構來操作。
@RestController
@RequestMapping("/api/v1/demotest")
public class demotest {
@GetMapping
public ResponseEntity<String> SayHello(){
return ResponseEntity.ok("hello");
}
}
我們要使用到 postman 來測試