일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- 스프링 부트 기능
- jwt메서드
- 스프링 부트 공식 문서
- github
- git
- REST API 규칙
- JPA
- jpa회원가입
- jpa에러
- JoinColumn
- json gson 차이
- ERD 작성
- 1차캐시
- Q 클래스
- Filter
- Unsatisfied dependency
- spring서버
- REST란
- queryDSL
- @IdClass
- Error creating bean with name
- 빈생성안됨
- 스프링부트오류
- json
- 최종 프로젝트
- 복합키
- uncheck Exception
- Spring Spring boot 차이
- JPA주의사항
- 인텔리제이
- Today
- Total
목록내배캠 주요 학습/Spring 입문 (18)
Everyday Dev System

application.properties에 추가 spring.datasource.url=jdbc:mysql://localhost:3307/memo spring.datasource.username=root spring.datasource.password=1234 spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver build.gradle에 JDBC 의존성과, Mysql 의존성 추가 implementation 'mysql:mysql-connector-java:8.0.28' implementation 'org.springframework.boot:spring-boot-starter-data-jdbc' package com.sparta.memo.contro..

https://github.com/Chaeyounglim/memo GitHub - Chaeyounglim/memo: It's Spring Project for practice CRUD in Memo. It's Spring Project for practice CRUD in Memo. Contribute to Chaeyounglim/memo development by creating an account on GitHub. github.com resources - static - index.html 코드 더보기 Memo 공유하고 싶은 소식을 입력해주세요. October 10, 2020 anonymous 출처 : 팀스파르타, 내일배움캠프 1. 메모장 프로젝트 설계 메모장 기능 설계 접속 하자마자 메모 전체 목..

- pathVariable 빼고 RequestParam, ModelAttribute는 어노테이션 생략 가능. 스프링에서 원시타입일 경우에는 @RequestParam가 생략, 그 외에 클래스 타입같은 경우에는 @ModelAttribute이 생략되어 있다고 자동으로 인식하고 실행시킴. 1. Path Variable 방식 - @PathVariable (required= false) 기재 가능. (값 여부에 따른 오류 발생 핸들링 가능) 서버에 보내려는 하는 데이터를 URL 경로에 추가를 할 수 있습니다. 1) 필요한 부분의 데이터인 name에 {name}으로 중괄호를 씌어서 mapping url에 기재 2) @PathVariable 라는 어노테이션을 매개 변수 앞에 기재 // [Request sample] /..

1. @RestController 란? -> Controller + ResponseBody 클래스에 @RestController를 달아주면, 메서드별로 @ResponseBody를 각각 기재할 필요가 없습니다. ** html을 반환 할 경우에 @ResponseBody 미기재 데이터를 반환할 때는 @ResponseBody 반드시 기재 package com.sparta.springmvc.response; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.Rest..

더보기 https://github.com/Chaeyounglim/spring-mvc GitHub - Chaeyounglim/spring-mvc: it's practice for spring it's practice for spring. Contribute to Chaeyounglim/spring-mvc development by creating an account on GitHub. github.com 1. Json 형태로 반환하기 1) String으로 json 형태를 만들기 JS에 있는 타입이므로, JSON은 자바 서버에서 읽을 수 없습니다. 그리하여, 자바에서는 아래와 같이 String으로 json 형태를 만들어서 클라이언트로 반환을 해줍니다. return "{\"name\":\"Robbie\",\"..

더보기 https://github.com/Chaeyounglim/spring-mvc GitHub - Chaeyounglim/spring-mvc: it's practice for spring it's practice for spring. Contribute to Chaeyounglim/spring-mvc development by creating an account on GitHub. github.com 1. @ResponseBody를 기재시에는 String 타입으로 반환, 미 기재 시에는 [resources] - [templates] 안에서 Hello World.html파일을 찾음. package com.sparta.springmvc.controller; import org.springframework...

출처 : 팀 스파르타 스프링 입문 강의 20230611 9:10 - 9: 33 1. MVC 디자인 패턴이란? 2. 사용자가 API 요청 시 서버의 서블릿 동작 로직 3. Front Controller

1. git 설정 2. 새 프로젝트 생성 - Spring Web , Lombok 추가 3. Setting - Auto Import 설정 - Add unambiguous imports on the fly & Optimize imports on the fly 체크하고 Apply 4. 인텔리제이에서 git repository 새로 생성 Share Project on GitHub - 강의에서 VCS로 들어가서 Create git repository를 하라고 나와 있으나. 나는 이전에 github 주소와 연동을 했기 때문에 따로 방법을 찾아서 생성했다. 2023.06.12 - [분류 전체보기] - TIL 로컬에서 git 버전관리 파일이 이상할 때 TIL 로컬에서 git 버전관리 파일이 이상할 때 20230612 ..