<%@ page language="java" contentType="text/html; charset=EUC-KR"
pageEncoding="EUC-KR"%>
<%@ taglib prefix="myTags" tagdir="/WEB-INF/tags" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=EUC-KR">
<title>Insert title here</title>
</head>
<body>
<myTags:car color="red" speed="100"/>
<myTags:car color="blue" speed="200"/>
</body>
</html>
======================================================================
<%@ tag language="java" pageEncoding="EUC-KR"%>
<%@ attribute name="color" required="true" %>
<%@ attribute name="speed" required="true" %>
<h1 style="color:${color}">색상 : ${color}</h1>
<h1>속도 : ${speed}</h1>
=======================================================================
자바 쓰레드 2개를 이용한 1~100 총합 구하기 (0) | 2015.03.31 |
---|---|
jsp 내가 만든 tag를 이용해 구구단 뽑기 (0) | 2015.03.31 |
JSP 내가 태그 만들어서 써보기 (0) | 2015.03.31 |
jsp 애노테이션을 이용해서 beans에 값 자동 셋팅하기 (0) | 2015.03.28 |
자바 애노테이션 지정해둔 값 다 뽑아보기 (0) | 2015.03.28 |