Java/JSP

    JSP - FTA 환경설정 #1

    http://servlets.com/cos/ Servlets.com | com.oreilly.servlet servlets.com WebContent > 폴더 fileupload > fileSelect.jsp user : title : file : WebContent > 폴더 fileupload > viewPage.jsp 저장된파일: 실제파일: 파일타입: 파일크기: user: title: 파일선택 WebContent > 폴더 filestorage 내에 파일이 업로드 된다. 실행화면

    Server.xml workDir 설정

    workDir="C:\Jsp\myapp\work" 경로설정을 현재 프로젝트 내에서 보려면 workDir 설정해주면 된다.

    JSP - #Web상에 작업목록 확인하는 방법

    default org.apache.catalina.servlets.DefaultServlet debug 0 listings true 1 welcome.jsp index.htm index.jsp WEB-INF 폴더내에 위치시킴 리스트 확인 가능

    SMS 발송서비스 만들기(feat. 네이버클라우드 SENS 이용) #2

    이번에 연습해볼 것은 POSTMAN 을 이용해서 SMS 발송해보자. A powerful GUI platform to make your API development faster & easier, from building API requests through testing, documentation and sharing. API를 테스트하고, 테스트 결과를 확인하고 API 개발의 생산성을 높여주는 플랫폼 이라고 한다. https://www.getpostman.com/ Postman | API Development Environment Postman is the only complete API development environment used by more than 7 million developers an..

    SMS 발송서비스 만들기(feat. 네이버클라우드 SENS 이용) #1

    https://www.ncloud.com/ NAVER CLOUD PLATFORM cloud computing services for corporations, IaaS, PaaS, SaaS, with Global region and Security Technology Certification www.ncloud.com API 를 활용하려면 먼저 회원가입부터 하자. 활용목적은 현재 JSP공부중에 웹페이지의 전반적인 부분을 만드는중에 회원가입시 전화번호도 서버(DB)에 저장을 할 것이다. 그러면 보통은 인증서비스가 들어가면 좋겠다.. 싶어서 연습겸 사용해보는 것. 1. 서비스 이용신청 및 프로젝트 등록하기 - 서비스 Type : 서비스 타입 선택 - 이름 : 이름은 소문자로만 가능했음. - 설명 : 서비스 이..

    Javascript 복습 - 2

    Javascript 복습 - 2 var plusTen = function() { var num = prompt("숫자를 입력해주세요.", ""); alert(Number(num) + 10); }; // alert(typeof plusTen); // plusTen(); //함수를 변수처럼 대입이 가능하다. var add = plusTen; // add(); // prompt("숫자입력", 1); //함수는 재정의가 가능하다. // 결과: 30 function plusTen() { alert(10); } function plusTen() { alert(30); } plusTen(); // native code : 선언적 함수. alert(prompt); function printTen(x) { return ..