您好,登錄后才能下訂單哦!
OSGi與JSF結合開發是怎樣的,相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。
為了方便大家學習和使用OSGi,我決定自己寫一篇關于OSGi與JSF結合的例子,比較詳細的介紹如何實現一個OSGi與JSF結合的例子。
在OSGi與JSF結合的使用中,由于需要改寫一些由Equinox實現好的項目org.eclipse.equinox.jsp.jasper的一些源碼,因此,操作起來似乎稍微要麻煩一些,Equinox上的項目基本上都是通過CVS來管理的,因此首先需要保證自己已經安裝了CVS客戶端,然后拉下代碼,為下面的工作做好準備。
先就將OSGI與JSF的結合使用例表如下:
1. 建立plugin工程:osgi.jsf.finals
2. 編寫頁面
◆index.jsp
<%@taglib uri="http://java.sun.com/jsf/core" prefix="f" %> <%@taglib uri="http://java.sun.com/jsf/html" prefix="h" %> <%@page contentType="text/html;charset=UTF-8"%> <html> <head> <title>JSF Samples</title> </head> <body> <f:view> <h:form> <h:outputText style="color:red" value="#{user.errMsg}" /> <h4>JSF Samples</h4> Nick Name: <h:inputText value="#{user.id}"/><p> <h:commandButton value="Submit" action="#{user.verify}"/> </h:form> </f:view> </body> </html> ◆welcome.jsp <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %> <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %> <%@page contentType="text/html;charset=UTF-8"%> <html> <head> <title>JSF Samples</title> </head> <body> <f:view> <h:outputText value="#{user.id}"/> Welcome! <h4>JavaServer Faces!</h4> </f:view> </body> </html> 3. 實現相應類UserBean.java package org.danlley.jsf.beans; public class UserBean { private String id; private String pwd; private String errMsg; public String getId() { return id; } public void setId(String id) { this.id = id; } public String getErrMsg() { return errMsg; } public void setErrMsg(String errMsg) { this.errMsg = errMsg; } public String getPwd() { return pwd; } public void setPwd(String pwd) { this.pwd = pwd; } public String verify() { if (id.equals("jsfUser")) { return "success"; } else { setErrMsg("userID should be jsfUser"); return "failed"; } } }
看完上述內容,你們掌握OSGi與JSF結合開發是怎樣的的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。