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 | 29 | 30 | 31 |
Tags
- Linux
- springboot+redis
- catalina.out
- Tomcat
- architecture
- Entity Code 치환
- aws elasticache 활용
- docker 컨테이너로 띄우기
- select
- insert
- mysql
- 만들면서 배우는 클린 아키텍처
- 톰캣
- for문
- Java
- 정규식
- redis + spring boot 함께
- javascript
- jQuery
- 특수문자 치환
- js
- 리눅스
- Docker Compose
- feignClient
- 자바스크립트
- 자바
- sftp
- 초단위
- 제이쿼리
- 엔티티 코드 치환
Archives
- Today
- Total
목록POST 데이터 전송 (1)
꾸준하게, 차근차근

1. application/json과 application/x-www-form-urlencoded application/json은 {key: value}의 형태로 전송되지만 application/x-www-form-urlencoded는 key=value&key=value의 형태로 전달된다. 즉 application/x-www-form-urlencoded는 보내는 데이터를 URL인코딩 이라고 부르는 방식으로 인코딩 후에 웹서버로 보내는 방식을 의미한다. public JSONObject httpPost(String url, HashMap param) { JSONObject jsonObj = null; try { // TLS/SSL 통신 무시 TrustManager[] trustAllcerts = new Tr..
Java
2022. 4. 26. 23:27