Writing /volume1/Web/Public/dokuwiki/data/log/deprecated/2024-11-15.log failed

差分

このページの2つのバージョン間の差分を表示します。

この比較画面へのリンク

両方とも前のリビジョン前のリビジョン
次のリビジョン
前のリビジョン
study:jsf:migration [2008/04/25 14:29] bananastudy:jsf:migration [2008/04/26 12:50] (現在) banana
行 62: 行 62:
   </controller>   </controller>
 </code> </code>
 +
 +
 +
 +
 +
 +
 +
 +
 +
  
  
行 71: 行 80:
  
 ===== Example of Struts-JSF Integration ===== ===== Example of Struts-JSF Integration =====
-Struts application을 JSF로 이관하는 과정을 이해하기 간단한 logon화면을 보여주는 jsp를 살펴보자.\\ 현재의 struts버전은 대략 다음과 같은 모습이다.+Struts application을 JSF로 이관하는 과정을 이해하기 위해 간단한 logon화면을 보여주는 jsp를 살펴보자. 
 +현재의 struts버전은 대략 다음과 같은 모습이다.
  
 **Listing 1: A simple Struts-based logon JSP** **Listing 1: A simple Struts-based logon JSP**
 +
 <code html> <code html>
 <%@ taglib uri="/tags/struts-bean" prefix="bean" %> <%@ taglib uri="/tags/struts-bean" prefix="bean" %>
 <%@ taglib uri="/tags/struts-html" prefix="html" %> <%@ taglib uri="/tags/struts-html" prefix="html" %>
 +
 <html:html> <html:html>
 <head> <head>
行 113: 行 125:
 </body> </body>
 </html:html> </html:html>
 +
 </code> </code>
----- + 
-**Step 1: Change the tag library declarations** 제일 처음에 해야 할 작업은 tag library 선언부를 Struts-JSF tag library로 바꾸는 것이다. 그리고 모든 컴포넌트 태그를 <f:view> 태그로 둘러싼다. +**Step 1: Change the tag library declarations** 제일 처음에 해야 할 작업은 tag library 선언부를 Struts-JSF tag library로 바꾸는 것이다.\\ 
 + 그리고 모든 컴포넌트 태그를 <f:view> 태그로 둘러싼다. 
  
 <code html> <code html>
行 121: 行 135:
 <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %> <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
 <%@ taglib uri="http://struts.apache.org/tags-faces" prefix="s" %> <%@ taglib uri="http://struts.apache.org/tags-faces" prefix="s" %>
 +
 <f:view> <f:view>
 <s:html locale="true"> <s:html locale="true">
 </code> </code>
  
-**Step 2: Modify declarations for localized messages** 두번째 단계는 <s:loadMessage> 태그를 사용하여 basename으로 지정되어 있는 %%ResourceBundle%%을 로드하는 것이다. basename을 지정하지 않으면 기본으로 저장되어있는 application의 기본 %%MessageResources%% 번들이 로드된다. +**Step 2: Modify declarations for localized messages** 두번째 단계는 <s:loadMessage> 태그를 사용하여 basename으로 지정되어 있는 %%ResourceBundle%%을 로드하는 것이다.\\  
 +basename을 지정하지 않으면 기본으로 저장되어있는 application의 기본 %%MessageResources%% 번들이 로드된다. 
  
 <code html> <code html>
行 131: 行 147:
 </code> </code>
  
-일단 로드되면 모든 컴포넌트로부터 messages를 키로 JSF Expression language형식으로 접근할 수 있다. 다음은 title을 %%ResourceBundle%%을 이용하여 지역화한 예이다.+일단 로드되면 모든 컴포넌트로부터 messages를 키로 JSF Expression language형식으로 접근할 수 있다.\\ 
 +다음은 title을 %%ResourceBundle%%을 이용하여 지역화한 예이다.
  
 <code html> <code html>
行 147: 行 164:
  
 **Step 4: Using JSF EL for input fields** 네번째 단계는 Struts form tag를 해당 JSF form tag로 교체하는 작업이다. **Step 4: Using JSF EL for input fields** 네번째 단계는 Struts form tag를 해당 JSF form tag로 교체하는 작업이다.
-logonForm이라는 이름으로 ActionForm이 struts-config.xml에 저장돼있다고 가정한다.+logonForm이라는 이름으로 %%ActionForm%%이 struts-config.xml에 저장돼있다고 가정한다.
  
 <code html> <code html>
行 155: 行 172:
 </code> </code>
  
-**Step 5: Change tags for submit and reset buttons** 마지막으로 button 의 label을 지역화한다. 이때 HtmlcommandButton 컴포넌트에 action속성이 지정되있지 않는 것에 눈여겨 보기 바란다. 이는 버튼이 클릭되면 <s:form> 요소와 연결돼있는 struts Action이 실행되기 때문이다.+**Step 5: Change tags for submit and reset buttons** 마지막으로 button 의 label을 지역화한다. 이때 %%HtmlCommandButton%% 컴포넌트에 action속성이 지정되있지 않는 것에 눈여겨 보기 바란다. 이는 버튼이 클릭되면 <s:form> 요소와 연결돼있는 struts Action이 실행되기 때문이다.
  
-지금까지의 교체작업으로 바뀐 완성된 JSP는 다음과 같다.+지금까지의 교체작업으로 바뀐 완성된 JSP는 다음과 같다.\\
  
 **Listing 2: Example logon JSP after migration using the Struts-Faces Integration Library** **Listing 2: Example logon JSP after migration using the Struts-Faces Integration Library**
行 168: 行 185:
 <f:loadBundle var="messages" basename="com.mycompany.myapp.ApplicationResources"/> <f:loadBundle var="messages" basename="com.mycompany.myapp.ApplicationResources"/>
 <s:html locale="true"> <s:html locale="true">
 +<head>
 <title><h:outputText value="#{messages['logon.title']"/></title> <title><h:outputText value="#{messages['logon.title']"/></title>
 </head> </head>
行 204: 行 222:
 </f:view> </f:view>
 </code> </code>
 +
 +===== Reference =====
 +  - JSF In Action, Kito D. Mann
 +  - [[http://www.oracle.com/technology/pub/articles/masterj2ee/j2ee_wk8.html]] : The Best of Both Worlds: Integrating JSF with Struts in Your J2EE Applications
 +
 +
 +

QR Code
QR Code study:jsf:migration (generated for current page)