728x90 반응형 spring6 springboot 세팅 에러메세지 No matching variant of org.springframework.boot:spring-boot-gradle-plugin:3.2.2 was found. The consumer was configured to find a library for use during runtime, compatible with Java 11, packaged as a jar, and its dependencies declared externally, as well as attribute 'org.gradle.plugin.api-version' with value '8.5' but: --풀 메세지 A problem occurred configuring root project 'test1'. > Could n.. 2024. 2. 1. [spring]-프로젝트 환경설정 https://www.inflearn.com/course/%EC%8A%A4%ED%94%84%EB%A7%81-%EC%9E%85%EB%AC%B8-%EC%8A%A4%ED%94%84%EB%A7%81%EB%B6%80%ED%8A%B8/dashboard [무료] 스프링 입문 - 코드로 배우는 스프링 부트, 웹 MVC, DB 접근 기술 - 인프런 | 강의 스프링 입문자가 예제를 만들어가면서 스프링 웹 애플리케이션 개발 전반을 빠르게 학습할 수 있습니다., - 강의 소개 | 인프런... www.inflearn.com 위의 강의를 듣고 정리한 내용입니다. 기존에 스프링 프로젝트 할때는 sts로 개발했었는데 위의 강의는 Intellij를 씁니다. 라이브러리는 Maven이 아닌 gradle를 사용 spring boot는 설정.. 2022. 8. 20. [Spring] Controller에서 Map으로 파라미터를 받는 방법 @RequestParam -HTTP Request 파라미터를 받을 수 있는 spring의 어노테이션이다. -get,post방식둘다 지원한다. 이런식으로 사용한다. @Controller public class TestController() { @RequestMapping() public String Test(@RequestParam int a,@RequestParam Sting b) { ... return b; } } @RequestParam을 사용해서 파라미터를 Map으로 받기 하나하나 변수 입력할 필요없이 jsp에서 넘겨준 값을 Map으로 묶어서 받아오니까 편하다. service,dao,sqlmap에서도 map으로 변수를 받으면 되니 vo를 만들 필요가 없어서 개발에 편하다. 변수가 추가되는등 변경이 .. 2022. 7. 1. [Spring]ResponseEntity ResponseEntity -spring에서 제공하는 클래스 HttpRequest에 대한 응답데이터를 포함하는 클래스다. view를 리턴하지 않고 Data를 리턴한다. -새로고침없이 데이터를 가져오는데 사용한다. RestController 와의 차이점 리턴시에 HTTP상태코드를 전송하고 싶은 데이터와 함께 전송할 수 있기 때문에 세밀한 제어가 가능하다. 사용방법 @Controller public class TestController() { @Resource(name="service") Service service; @RequestMapping("/test") public ResponseEntity test() { HttpHeaders headers=new HttpHeaders(); //웹에 전달되는 문서.. 2022. 6. 24. 이전 1 2 다음 728x90 반응형