본문 바로가기

분류 전체보기155

Day 56. [JSP/Servlet/JavaScript] Cors, 자바로 웹 크롤링, 도로명주소API Cors https://evan-moon.github.io/2020/05/21/about-cors/ CORS는 왜 이렇게 우리를 힘들게 하는걸까? 이번 포스팅에서는 웹 개발자라면 한번쯤은 얻어맞아 봤을 법한 정책에 대한 이야기를 해보려고 한다. 사실 웹 개발을 하다보면 CORS 정책 위반으로 인해 에러가 발생하는 상황은 굉장히 흔해서 evan-moon.github.io 자바에서 웹 크롤링 하기 위한 라이브러리 https://mvnrepository.com/artifact/org.jsoup/jsoup/1.14.3 package app; import java.io.BufferedInputStream; import java.io.BufferedOutputStream; import java.io.Buffered.. 2022. 3. 25.
삽질노트 5. Error 522 Ray ID: 6f0bebef9d9cf8d3 Cloudflare 오류 오잉 사진 크기 줄인 후 서버 컴퓨터를 재시작했더니 Error 522 Ray ID: 6f0bebef9d9cf8d3 • 2022-03-24 02:19:23 UTC Connection timed out 오잉 왜 뜨지하고 밑에 내려가보니 Cloudflare 에러! 선생님께 말씀드려보니 서버 컴퓨터 재시작시 아이피가 변경되어 변경된 아이피를 Cloudflare에 적용시켜야한다 하셨다! 하지만 여기에 있는 IPv4 가 아닌 AWS 에 EC2 들어가면 보이는 IP를 넣어줘야한다. + nginx도 다시 실행해줘야한다! 2022. 3. 24.
Day 55. [Java/JavaScript/jQuery] Ajax, jQuery, 메일 보내기 아침에는 항상 전날 했던거 체크부터 !! 서버 상태에 따라 달라질 수도 있다 !! jquery 함수들 모아둔 곳 !!! 우리는 jquery.get(), post(), params(), put(), delete() 썼다. https://api.jquery.com/ jQuery API Documentation jQuery is a fast, small, and feature-rich JavaScript library. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitud.. 2022. 3. 24.
Day 54. [Html/JavaScript] Modal Modal Reply bno content regDate writer Register Modify Remove $(function(){ // $("#replyModal").modal("show"); const bno = '${board.bno}'; showList(); function showList(){ replyService.list(201, function(data) { console.log(data); var str = ""; for(var reply in data){ str +=''; str +=''; str +=''+ data[reply].writer +''; str +='' + data[reply].regDate + ''; str +=''; str +='' + data[reply].conte.. 2022. 3. 24.