REst API axios
=> axios의 request method
Post : 데이터 등록 및 전송 axios.post()
GET : 데이터 조회 axios.get()
PUT : 데이터 수정 axios.put()
DELETE : 데이터 삭제 axios.delete()
// aixos.get()을 썻기 때운에 @GetMapping으로 변경
@GetMapping(path="isExistId")
public String isExistId(@RequestParam String id) {
return userService.isExistId(id);
}
@ResponseBody 지워줌 (@RestController를 사용했기 때문에)
package com.example.demo;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.autoconfigure.domain.EntityScan;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.data.jpa.repository.config.EnableJpaRepositories;
@SpringBootApplication
@ComponentScan(basePackages = {"com.example.demo", "main.controller", "user.*"})
@EntityScan("user.bean")
@EnableJpaRepositories("user.dao")
public class Chapter05JpaReactApplication {
public static void main(String[] args) {
SpringApplication.run(Chapter05JpaReactApplication.class, args);
}
}