Tile 학습 노트 1: 기본 개념 준비

2575 단어 apache.htmlxml
layot: 웹 페이지 의 레이아웃 / / 이것 은 사실 tiles 와 아무런 관계 가 없습니다.
Template: 페이지 레이아웃 설명 파일, 페이지 의 스타일 을 묘사 하고 구체 적 으로 보 여줄 때 만 내용 을 템 플 릿 에 추가 합 니 다.
쉽게 말 하면 tiles 의 템 플 릿 은 페이지 의 대략적인 모습 이나 레이아웃 을 정의 하 는 것 입 니 다.
attribute: template 에 채 워 야 할 내용 은 string template definition 일 수 있 습 니 다.
TileTemplate

<%@ taglib uri="http://tiles.apache.org/tags-tiles" prefix="tiles" %>
<html>
  <head>
    <title><tiles:getAsString name="title"/></title>
  </head>
  <body>
        <table>
      <tr>
        <td colspan="2">
          <tiles:insertAttribute name="header" />
        </td>
      </tr>
      <tr>
        <td>
          <tiles:insertAttribute name="menu" />
        </td>
        <td>
          <tiles:insertAttribute name="body" />
        </td>
      </tr>
      <tr>
        <td colspan="2">
          <tiles:insertAttribute name="footer" />
        </td>
      </tr>
    </table>
  </body>
</html>



definition: 웹 페이지 의 tile 정 의 는 구체 적 인 내용 을 채 워 서 터미널 사용자 에 게 제출 되 고 계승 할 수 있 습 니 다.tile 구성 요소 에 해당 합 니 다.처음에는 이렇게 이해 할 수 있 었 다. 사용자 가 요청 한 페이지 는 하나의 definition 이 었 다.

<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE tiles-definitions PUBLIC
       "-//Apache Software Foundation//DTD Tiles Configuration 2.0//EN"
       "http://tiles.apache.org/dtds/tiles-config_2_0.dtd">
<tiles-definitions>
  <definition name="myapp.homepage" template="/layouts/classic.jsp">
    <put-attribute name="title" value="Tiles tutorial homepage" />
    <put-attribute name="header" value="/tiles/banner.jsp" />
    <put-attribute name="menu" value="/tiles/common_menu.jsp" />
    <put-attribute name="body" value="/tiles/home_body.jsp" />
    <put-attribute name="footer" value="/tiles/credits.jsp" />
  </definition>
</tiles-definitions>


보기 준비: definition 에 줄 구체 적 인 내용 을 저장 하 는 데 사 용 됩 니 다. 보통 request 에 있 습 니 다.

좋은 웹페이지 즐겨찾기