목록분류 전체보기 (159)
우당탕탕 개발일지

프로젝트 구조 프로젝트 : testJSP JavaHelloServlet.javaJspgugudan.jsphello.jsp 1. JSP의 전역변수 vs 지역변수hello.jsp전역변수 지역변수 age 변수는 전역 변수이다. 따라서 새로고침할 때마다 지역변수 구역에 있는 age++; 를 실행하게 된다.그렇기에 새로고침할 때마다 age의 값이 1씩 증가되는 것을 확인할 수 있다. Hello JSP 안녕하세요 JSP 나의 이름은 입니다. 나의 나이는 살 입니다. 5번 새로고침 후 26 -> 31로 변경 2. JSP 주석 vs HTML 주석 hello.jsp html 주석 --> jsp 주석 --%>나의 이름은 입니다. 나의 나이는 살 입니다. html 주석이 걸려있어도 age가 +1씩 증가..

PersonServlet.java package com.person;import java.io.IOException;import java.io.PrintWriter;import javax.servlet.ServletException;import javax.servlet.annotation.WebServlet;import javax.servlet.http.HttpServlet;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;@WebServlet("/PersonServlet")public class PersonServlet extends HttpServlet { private static fin..

1. 구구단 https://github.com/ujin302/Web2024/blob/main/JavaScript/src/main/webapp/practice/practice03-dan.html Web2024/JavaScript/src/main/webapp/practice/practice03-dan.html at main · ujin302/Web2024Contribute to ujin302/Web2024 development by creating an account on GitHub.github.com 2. 날짜 계산 https://github.com/ujin302/Web2024/blob/main/JavaScript/src/main/webapp/practice/practice04-date.html Web..

1. 과제 내용컬리 상품 화면 구현하기! 하지만 넘 어렵다.... https://www.kurly.com/goods/1000120319 [KF365] 한돈 급냉 삼겹살 600g (냉동) - 마켓컬리한입 크기로 손질한 냉동 삼겹 - Better Life for All. 건강한 식재료부터 믿을 수 있는 뷰티, 라이프스타일 상품까지. 나와 내 가족이 사고 싶은 상품을 판매합니다. 내일 아침 문 앞에서 만나요!www.kurly.com htmlhttps://github.com/ujin302/Web2024/blob/main/CSS/src/main/webapp/practice/practice05.html Web2024/CSS/src/main/webapp/practice/practice05.html at main ·..
1. CSS 과제 2. ORACLE 문제1각 과목의 과목명과 담당 교수의 교수명을 검색하고, 과목번호로 오름차순테이블 : COURSE, PROFESSOR 컬럼 : CNO, CNAME, PNO, PNAMEselect CNO, CNAME, PNO, PNAMEfrom coursejoin professor using(pno)ORDER by 1; 문제2모든 교수의 명단과 담당 과목을 검색하시오 테이블 : COURSE, PROFESSOR 컬럼 : CNO, CNAME, PNO, PNAME, SECTIONselect CNO, CNAME, PNO, PNAME, SECTIONfrom COURSEright join professor using(pno)ORDER by 4; 문제3모든 교수의 명단과 담당 과목을 검색한다(단..
1. html 과제https://github.com/ujin302/html2024/tree/main/src/main/webapp/practice html2024/src/main/webapp/practice at main · ujin302/html2024Contribute to ujin302/html2024 development by creating an account on GitHub.github.com 2. ORACLE 과제문제1유공과와 생물과, 식영과 학생을 검색하고 오름차순으로 정렬테이블 : STUDENTselect *from studentwhere major in ('유공', '생물', '식영') ORDER by major; 문제 2평점이 2.0에서 3.0사이인 학생을 검색하시오 (BETWEEN ..

1. Git Hubhttps://github.com/ujin302/Dice_Master GitHub - ujin302/Dice_MasterContribute to ujin302/Dice_Master development by creating an account on GitHub.github.com 2. Oracel DB 3. 발표 PPT