| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 | 31 |
- mssql
- 데이터베이스
- reactjs
- 보안취약점
- GIT
- Vue
- Spring
- 자바스크립트
- jdk
- table
- EXTJS
- JS
- component
- restapi
- 쿼리
- java
- springboot
- 개발
- javascript
- DATABASE
- sql
- 스프링
- 컴포넌트
- React
- 자바
- 스프링부트
- crud
- 개발공부
- 리액트
- Intellij
- Today
- Total
목록전체 글 (147)
준준의 기록일지
출처 : https://elfinlas.github.io/2018/02/18/spring-parameter/ Spring에서 @RequestParam과 @PathVariable Spring에서 Controller의 전달인자…Spring을 사용하다 보면 Controller 단에서 클라이언트에서 URL에 파라메터를 같이 전달하는 경우가 있습니다.주로 사용하는 형태는 아래의 두 가지가 대표적인 케이�� elfinlas.github.io @RequestParam과 @PathVariable은 Spring에서 Controller의 "전달인자"이다. Spring을 사용할때 view에서 controller로 URL에 파라미터를 같이 전달하는 경우가 있다. 이때 사용하는 형태는 아래 두가지가 대표적이다. Type 1 :..
출처 : https://sjh836.tistory.com/141 RestTemplate (정의, 특징, URLConnection, HttpClient, 동작원리, 사용법, connection pool 적용) 참조문서 : https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/web/client/RestTemplate.html 1. RestTemplate이란? spring 3.0 부터 지원한다. 스프링에서 제공하는 http.. sjh836.tistory.com 1. RestTemplate이란? - spring 3.0부터 지원한다. 스프링에서 제공하는 Http 통신에 유용하게 쓸 수 있는 템플릿이며 HTTP서버와..
출처 : https://a1010100z.tistory.com/106 [Spring] ResponseEntity는 왜 쓰는 것이며 어떻게 쓰는걸까? 기존 내 개인 프로젝트 코드의 RestController 반환값은 모두 Object 타입이었다. 하지만, 일반적인 API는 반환하는 리소스에 Value만 있지 않다는 것을 모두 알고 있을 것이다. 당장 생각나는 것으로는 � a1010100z.tistory.com RestController 반환값 - Object - 상태코드, 응답 메세지 - 일반적인 API는 반환하는 리소스에 Value만 있지 않다고 한다. - 상태코드, 응답메세지를 반환할때 사용하는 것이 ResponseEntity Class ResponseEntity는 HttpEntity를 상속받아서 H..
select * from sample_info create table sampleOtp_info ( otp_id int not null, otp_user varchar(10) not null ) --테이블 삭제 drop table [테이블 명] select * from sampleOtp_info alter table sample_info add req_desc varchar(50) insert into sample_info values (4, '안녕하세요. Test 입니다.','컴퓨터 고장으로 인한 신청', '변경사유 없음'); alter table sample_info add update_desc varchar(50) select * from sample_info - 컬럼 삭제 alter table [..