2012-03-19 3 views
0

を必要としている私はICEfacesを3を使用しようと、次のように樹氷のテーマを設定しています:ビュー用に設定さICEfacesを、しかし時間:頭とh:車体部品が

org.icefaces.ace.theme 樹氷を

Mar 19, 2012 4:57:04 PM org.icefaces.impl.event.BridgeSetup isListenerForSource 
WARNING: ICEfaces configured for view /xmlhttp/css/rime/css-images/bullet.gif but h:head and h:body components are required 

がアドバイスしてください:

しかし、私は次の警告を取得しています。

答えて

0

これは、<h:head>または<h:body>が定義されていないページをロードしていることを意味します。このようにする:

<?xml version="1.0" encoding="UTF-8"?> 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core" 
    xmlns:ace="http://www.icefaces.org/icefaces/components" 
    xmlns:ice="http://www.icesoft.com/icefaces/component"> 

<h:head> 
    <title>MyPage</title> 
</h:head> 

<h:body> 
    <!-- put your icefaces stuff in here --> 
</h:body> 
</html> 
関連する問題