JSF2.1のh:outputStylesheetを実行します。
【手順】
1.「JSF2.1プロジェクトの作成方法」の手順で、「JSF21Sample009-h-outputStylesheet」といプロジェクトを作成。
※プロジェクトの設定は以下の通り。
2.「WebContent/WEB-INF/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>JSF21Sample009-h-outputStylesheet</display-name>
<welcome-file-list>
<welcome-file>faces/index.xhtml</welcome-file>
</welcome-file-list>
<servlet>
<servlet-name>Faces Servlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>/faces/*</url-pattern>
</servlet-mapping>
</web-app>
3.「Ctrl+Shift+F」を押し、ソースコードをフォーマッティング、「Ctrl+S」でファイルを保存。
4.「任意のファイルの作成方法」の手順で、「WebContent/」ディレクトリに「index.xhtml」というファイルを作成。
5.「index.xhtml」を以下の様に入力。
<html xmlns="http://www.w3c.org/1999/xhtml"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:ui="http://java.sun.com/jsf/facelets">
<h:head>
<h:outputStylesheet library="css" name="style.css" />
</h:head>
<h:body>
<h:outputText value="Hello JSF2.1 Stylesheet" class="hello" />
</h:body>
</html>
6.「Ctrl+Shift+F」を押し、ソースコードをフォーマッティング、「Ctrl+S」でファイルを保存。
7.「任意のディレクトリの作成方法」の手順で、「WebContent」以下に「resources」ディレクトリを作成。
8.「任意のディレクトリの作成方法」の手順で、「WebContent/resources」以下に「css」ディレクトリを作成。
9.「任意のファイルの作成方法」の手順で、「WebContent/resources/css」ディレクトリに「style.css」というファイルを作成。
10.「style.css」を以下の様に入力。
.hello {
font-weight: bold;
color: red;
}
11.「動的Webアプリケーションをサーバーに配置する方法」の手順で、作成したプロジェクトをサーバーに配置します。
12.「サーバーをデバッグモードで起動する方法」の手順で、サーバーを起動します。
13.ブラウザで以下のURLにアクセスします。
http://localhost:8080/JSF21Sample009-h-outputStylesheet/faces/index.xhtml
14.以下の様に表示されれば成功です。
以上です。
h-outputStylesheet-01.png)
0 件のコメント:
コメントを投稿
注: コメントを投稿できるのは、このブログのメンバーだけです。