Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 외부 프로젝트 상속
- iftables
- 가상머신
- vi명령어
- HTTP
- 사설 저장소
- 오라클
- nexus repository
- oracle error
- bootjar 상속받기
- 오라클 에러
- nfs
- Nexus 3 Repository
- 오라클 에러 정리
- java
- 리눅스
- jar 상속받기
- 리눅스 설치
- 자바 프로그래밍
- 스프링부트 상속
- oracle
- 인텔리제이
- bootJar
- nexus3
- vm
- nexus maven
- maven 저장소
- 저장소
- 유닉스
- NFS 구축
Archives
- Today
- Total
목록get방식 통신 (1)
빽기의 코딩공부Story
[HTTP] Get Method, Get방식
● Get Method 란 - 주소창에 파라미터가 노출된다. - 브라우저에서 주소에 대한 캐시가 이루어 지며 정보를 얻을 때 사용한다. - 전송 가능 데이터 길이 제한이 있다. - 보안에 취약하다. - 전송 속도가 POST에 비해 빠르다. import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RestController; @RestController // 어노테이션 선언 @RequestMapping("/api") //localhost:8080/api 주소 ..
[SPRING-BOOT]/AdminPage_Project
2020. 7. 21. 15:23