티스토리 뷰
728x90
반응형
서블릿(Servlet)
package sec01.ex01;
import jakarta.servlet.ServletConfig;
import jakarta.servlet.ServletException;
import jakarta.servlet.annotation.WebServlet;
import jakarta.servlet.http.HttpServlet;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
@WebServlet("/member")
public class MemberServlet extends HttpServlet {
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse response) throws ServletException, IOException {
}
@Override
protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
}
@Override
public void init(ServletConfig config) throws ServletException {
}
}
JSP 내장 객체
request
response
out
session
application
pageContext
page
config
exception
JSP 스크립트
<%!
멤버 변수 or 멤버 메서드
%>
<%
자바 코드;
%>
<%= 값 %>
JSP 액션 태그
<jsp:xxx> </jsp:xxx>
JSP 표준 태그 라이브러리(JSTL)
<c:xxx>
<fmt:xxx>
<fmt:xxx>
${ fn:length("text") }
JSP 표현 언어
${ xxx }
Spring Framework
Maven
Spring Web MVC
728x90
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- .submit()
- async
- jstl(java standard tag library)
- MainActor
- 메이븐(maven)
- jstl(java standard tag library)-core
- System.Diagnostics
- 스프링 시큐리티(spring security)
- java 키워드 정리
- 표현 언어(expression language)
- java-개발 환경 설정하기
- REST API
- await
- java.sql
- 스프링 프레임워크(spring framework)
- In App Purchase
- nl2br
- 문자 자르기
- 제품 등록
- jsp 오픈 소스
- 스프링 시큐리티(spring security)-http basic 인증
- system.io
- java web-mvc
- 진수 변환
- 스프링 프레임워크(spring framewordk)
- 특정 문자를 기준으로 자르기
- 상품 등록
- 람다식(lambda expression)
- error-java
- 인텔리제이(intellij)
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함