Download as pdf or txt
Download as pdf or txt
You are on page 1of 5

NHT NGH

LP TRNH WEB VI JAVA

S DNG TEMPLATE VI TILES


Gii thiu
Template l trang khung mu cha cu trc chung p dng cho mt s trang web thnh vin ca
website. Template thng cha mt s vng c th thay i ni dung cc trang web khi p dng
n s ty bin giao din cho cc vng .
Sau y l 2 trang Home.jsp v AboutUs.jsp p dng mt Template c 2 vng thay i.

Trang Home.jsp (nhp lin kt Home)

Vng thay i 1
Vng thay i 2

NGUYN NGHIM NNGHIEM@YAHOO.COM

NHT NGH

LP TRNH WEB VI JAVA

Trang About Us.jsp (nhp lin kt About Us)

Vng thay i 1
Vng thay i 2

NGUYN NGHIM NNGHIEM@YAHOO.COM

NHT NGH

LP TRNH WEB VI JAVA

Khm ph Project
Cu trc Project

Th vin: lib/*.jar
Tp tin cu hnh: web.xml
Template.jsp
Cc trang p dng Template.jsp
+ Home.jsp
+ AboutUs.jsp

Trang mu (Template.jsp)
<%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
<%@ taglib uri="http://tiles.apache.org/tags-tiles" prefix="tiles" %>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Online Shopping Center</title>
<style>
body{background: lightgray; font-family: verdana; font-size: 12px;}
#outer{width:950px; margin:0px auto;}

NGUYN NGHIM NNGHIEM@YAHOO.COM

NHT NGH

LP TRNH WEB VI JAVA

#header{height:150px; background:red;}
#menu{height:25px; background:aqua; padding-top: 5px; text-align: center;}
#left{width:300px; min-height:400px; background:yellow; float: left;}
#content{width:650px; min-height:400px; background:white; float: right;}
#footer{height:25px; background:red; clear: both;}
#left a{display: block; padding: 5px 0px;}
</style>
</head>
<body>
<div id="outer">
<div id="header"></div>
<div id="menu">
<a href="Home.jsp">Home</a> |
<a href="AboutUs.jsp">About Us</a> |
<a href="ContactUs.jsp">Contact Us</a> |
<a href="Feedback.jsp">Feedback</a> |
<a href="FAQs.jsp">FAQs</a> |
<a href="MyAccount.jsp">My Account</a>
</div>
<div id="left">
<fieldset>
<legend>Title</legend>
<tiles:insertAttribute name="head"/>
</fieldset>
<fieldset>
nh du vng thay i 1
<legend>Vertical Menu</legend>
<ul>
<li><a href="Home.jsp">Home</a></li>
<li><a href="AboutUs.jsp">About Us</a></li>
<li><a href="ContactUs.jsp">Contact Us</a></li>
<li><a href="Feedback.jsp">Feedback</a></li>
<li><a href="FAQs.jsp">FAQs</a></li>
<li><a href="MyAccount.jsp">My Account</a></li>
</ul>
</fieldset>
</div>
<div id="content">
<tiles:insertAttribute name="body"/>
</div>
<div id="footer"></div>
nh du vng thay i 2
</div>
</body>
</html>

Trang p dng mu (Home.jsp)


<%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib uri="http://tiles.apache.org/tags-tiles" prefix="tiles" %>
<tiles:insertTemplate template="Template.jsp">

NGUYN NGHIM NNGHIEM@YAHOO.COM

Ch nh mu p dng

NHT NGH

LP TRNH WEB VI JAVA

<tiles:putAttribute name="head">
<h1>HOME PAGE</h1>
</tiles:putAttribute>

Giao din vng 1

<tiles:putAttribute name="body">
<img src="images/java.png">
</tiles:putAttribute>

Giao din vng 2

</tiles:insertTemplate>

Trang p dng mu (AboutUs.jsp)


<%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib uri="http://tiles.apache.org/tags-tiles" prefix="tiles" %>
<tiles:insertTemplate template="Template.jsp">
<tiles:putAttribute name="head">
<h1>ABOUT US</h1>
</tiles:putAttribute>

Ch nh mu p dng

Giao din vng 1

<tiles:putAttribute name="body">
<img src="images/about.jpg">
</tiles:putAttribute>

Giao din vng 2

</tiles:insertTemplate>

Tp tin cu hnh ng dng web (web.xml)


<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="WebApp_ID" version="3.0">
<display-name>LabTemplate</display-name>
<listener>
<listener-class>org.apache.struts2.tiles.StrutsTilesListener</listener-class>
</listener>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>

NGUYN NGHIM NNGHIEM@YAHOO.COM

You might also like