IT story/JSP 34

[Jsp 강의] L12JDBC

2016. 10. 28. (Fri)L12JDBCJDBC는 Java DataBase Connection이다.이클립스에서 오라클 서버를 사용하기 위해 아래의 위치에 C:\oraclexe\app\oracle\product\11.2.0\server\jdbc\lib에 있는ojdbc6.jar를 붙여넣는다. (각자의 설치 환경에 따라 위치는 다르다) Jsp file을 생성하고 Oracle Server와 연동해서 회원 조회, 가입, 삭제, 수정 등을 실행해보자.SQL Developer로 Member Table을 생성한다. index.jsp12345678910111213ojdbc를 배워보자 ojdbc로 Member table의 list 출력하자 Member ListColored by Color Scriptercs 예제 ..

IT story/JSP 2016.10.28

[Jsp 강의] L11ELtag

2016. 10. 27. (Thu)L11ELtagEL(Expression Language) Tag에 대해 알아보자 index.jsp1234567891011121314151617EL 태그를 알아보자 EL 태그 el 태그의 데이터 삽입 el의 parameter el의 header el의 cookie el의 scopeColored by Color Scriptercs L01ELDataType.jsp에서 el 태그의 테이터 삽입에 대해 알아보자예제 1. L01ELDataType.jsp123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051Expression Language Tag EL 태그의 데이터 타입..

IT story/JSP 2016.10.27

[Jsp 강의] L10Bean

L10Bean Jsp에서 Bean객체를 사용하는 방법에 대해 알아보자 index.jsp123456789101112131415jsp에서 bean객체 사용하기 bean 객체 사용법 bean에 값을 저장하고 불러오기 jsp태그를 이용해서 저장하고 불러오기 제출한 양식을 bean으로 받아오기Colored by Color Scriptercs Member file 생성Member file을 생성하고 private로 사용할 변수 설정 후 Generate getters and setters로 모든 항목을 생성해준다.예제 1. Member.java12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535..

IT story/JSP 2016.10.27

[Jsp 강의] L09Cookie

L09Cookie쿠키에 대해서 알아보자!index.jsp DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">Cookie에 대해 알아보자쿠키를 설정하고 불러오자쿠키 설정하기쿠키 가져오기쿠키 삭제하기마지막으로 접속한 날짜 알아보기 L01SetCookie.jsp에서 쿠키를 설정해보자!예제 1. L01SetCookie.jsp12345678910111213141516171819202122232425262728쿠키 설정 쿠키 설정 Colored by Color Scriptercs L02GetCookie.jsp에서 쿠키를 가져오기!예제 2. L02GetCookie.jsp12345678910..

IT story/JSP 2016.10.27

[Jsp 강의] L08Session

L08SessionSession에 대해 알아보자 아래와 같은 구조로 file을 생성한다. index.jsp123456789101112131415161718Session을 알아보자 Session 수업 Session Setting Session 값 얻어오기 Session 모든 값 얻어오기 Session 정보 Session 삭제 Session을 이용해 로그인 하기Colored by Color Scriptercs L01SetSession.jsp에서 Session Setting 하기예제 1. L01SetSession.jsp 1234567891011121314151617181920Session Setting 세션 설정 뒤로Colored by Color Scriptercs L02GetSession.jsp에서 Sess..

IT story/JSP 2016.10.27

[Jsp 강의] L07Template

L07TemplateHeader와 Footer에 대해 알아보자아래와 같은 구조로 layout 폴더를 만들어 header와 footer를 생성한다. main.jsp123456789101112131415161718192021222324252627282930Tamplate를 알아보자 request 객체 정보를 출력해 보자 컨텍스트 패스 : 요청한 방식 : 요청한 URL : 요청한 URI : 서버이름 : 프로토콜 : Colored by Color Scriptercs /layout/header.jsp1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465..

IT story/JSP 2016.10.27

[Jsp 강의] L06Forward

L06Forward로그인 과정을 통해 Forward에 대해 알아보자 index.jsp1234567891011121314151617181920212223Insert title here 가로채서 변동시켰기 때문에//1.parameter를 post타입으로 전달하기 위해-> Object타입으로 전달 가능// -> header 정보로 파라미터를 넘길 수 있다.// -> get방식: 문자를 URL이 byte타입으로 변형해서 넘기는데 이때 인코딩이 "8859_1" 이라// -> 문자열의 인코딩을 변형해야한다. -> 한글깨짐이 심하다.//2.request 객체와 response 객체가 유지된다.// -> dispatcher.forward에 그대로 담아서 넘기기 때문에%>Colored by Color Scriptercs..

IT story/JSP 2016.10.27

[Jsp 강의] L05Redirect

L05Redirect로그인 과정을 통해 Redirect 기능을 알아보자 index.jsp12345678910111213141516Insert title hereColored by Color Scriptercs 예제1 L01LoginForm.jsp123456789101112131415161718192021222324252627282930313233343536373839servlet을 이용해서 로그인을 성공하자 로그인 form 성공 메시지 실패하면 L01LoginForm.jsp 페이지로 와서 id와 pwd가 틀렸습니다. 메시지 출력 L03LoginResult.jsp에서 파라미터 true가 없으면 접근할 수 없도록해라 (강제로 L01LoginForm.jsp)로 이동 --%> 아이디: 비밀번호: 제출 Color..

IT story/JSP 2016.10.27

[Jsp 강의] L04JSP

L04JSPindex.jsp123456789101112131415161718jsp에 대해서 알아보자 jsp 사용법 jsp의 데이터 타입 jsp에서 다른 class import 하는 방법 jsp에서 전역변수 설정하기 jsp에서 함수 사용하는 법 jsp에서 if를 사용해서 Login 하기Colored by Color Scriptercs L01DataType.jsp으로 jsp의 데이터 타입에 대해 알아보자예제1 L01DataType.jsp1234567891011121314151617181920212223242526272829303132333435363738기본 데이터 타입을 알아보자 기본 데이터 타입 String b: int c: long l: float f: double d: ++c : --c : c/3 :..

IT story/JSP 2016.10.27