티스토리 뷰
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
- 상품 등록
- 스프링 시큐리티(spring security)-http basic 인증
- 스프링 시큐리티(spring security)
- java.sql
- java-개발 환경 설정하기
- 진수 변환
- .submit()
- java 키워드 정리
- 람다식(lambda expression)
- system.io
- nl2br
- MainActor
- React
- error-java
- 문자 자르기
- 스프링 프레임워크(spring framewordk)
- jstl(java standard tag library)
- 표현 언어(expression language)
- 스프링 프레임워크(spring framework)
- REST API
- jsp 오픈 소스
- await
- In App Purchase
- 메이븐(maven)
- jstl(java standard tag library)-core
- java web-mvc
- System.Diagnostics
- 인텔리제이(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 | 31 |
글 보관함