일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 명사 분석기
- Lift
- node.js web framework
- docker
- 베트남어
- flex3
- 디즈니씨
- 주식이야기
- 명사 추출기
- ejb
- Node.js
- Cross
- iBatis
- 책이야기
- C/C++
- rss
- 나의 취미
- 메일왕창보내는법
- 명사 뽑아내기
- 나의 프로젝트
- php thumbnail
- Eclipse
- 도커
- 스킨 스쿠버
- scala
- nodejs express
- php
- ror실행
- ajax
- express for node.js
- Today
- Total
목록My Programing/JSP and Servlet (41)
nkdk의 세상
// top.jsp top 파일 부분 // bottom.jsp bottom 파일 부분 // includetest.jsp include 연습 본문 처리 include file: 여러 페이지에 공통으로 사용되는 부분을 별도의 파일로 만들고 필요한 경우 호출 후 하나의 파일로 실행 --- 이 곳은 include action tag test --- //intag.jsp 홀 수 출 력
jsp 문서는 0.jsp 형식 html * jsp 요소 + 기타 html 의 요소는 css vbscript 페이지 지시어 js ajax 등이 있음 jsp요소는 페이지 지시어 전역변수 선언 표현expression 클래스 유무 확인 -> 메모리 로딩 -> jspInit(); _> thread생성 -> jspInit(); 오버라이딩 o -> jspservice() 오버라이딩 x -> jspDestroy() 오버라이딩(o) 다음으로----------------------------- tomcat 에 webapp 에 화일을 만든다. 그리고 jar 만드는 법을 알려드리겠습니다. jar cf abc.war * 로 압축을 한다 압축한 화일을 잘라내어 webapp 에 넣어 놓는다 war 파일은 서버 실행시 압축..
한번에 모두 올립니다. package jikwon; import java.io.*; import javax.servlet.*; import javax.servlet.http.*; import java.sql.*; public class Buser extends HttpServlet{ Connection conn; PreparedStatement pstmt; ResultSet rs; public void init() throws ServletException{ try{ Class.forName("com.mysql.jdbc.Driver"); conn=DriverManager.getConnection("jdbc:mysql://localhost:3306/test","root","123"); pstmt=conn...