JSP, Servlet 공부를 시작했다.
자바를 이용해 어떻게 웹과 연동하는지 늘 궁금했는데 해답이 코 앞에 있었다.

HTML과 JSP를 연동해서 하나의 웹을 만들 수 있다는 것에 벅찼다.

Web Applications?

“A website where the HTML pages are generates dynamically based on the user’s actions.”

JSP Scripting Elements

JSP Expression

1
<%= some java expression %>

JSP Scirptlets

1
<% ~~~~~ %>

JSP Declarations

1
<%! ~~~~~~~ %>

Table of Contents

  1. Web Applications?
  2. JSP Scripting Elements