Eclipse RCP 插件 + 嵌入式 Jetty + JSF

Posted

技术标签:

【中文标题】Eclipse RCP 插件 + 嵌入式 Jetty + JSF【英文标题】:Eclipse RCP plugin + embedded Jetty + JSF 【发布时间】:2012-07-02 09:21:47 【问题描述】:

我制作了一个带有嵌入式 Jetty 的 RCP 插件,如下所示:

1) 在 plugin.xml -> Dependencies 中,我添加了以下内容:

org.eclipse.equinox.http.jetty
org.eclipse.equinox.http.registry
org.mortbay.jetty.server
javax.servlet

2)在plugin.xml -> Extensions中,我添加了一个Servlet扩展点(org.eclipse.equinox.http.registry.servlet

class: TemperatureServlet
alias:/temperature

TemperatureServlet 如下所示:

import java.io.IOException;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

public class TemperatureServlet extends HttpServlet 

    protected void doGet(HttpServletRequest req, HttpServletResponse resp)
            throws ServletException, IOException 

        System.out.println("doGet Called");

        resp.sendRedirect("Convertor.jsp");
    

文件 Convertor.jsp 如下所示:

<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="f"  uri="http://java.sun.com/jsf/core"%>
<%@ taglib prefix="h"  uri="http://java.sun.com/jsf/html"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<f:view>
<h:form>
        <h:panelGrid columns="2">
            <h:outputLabel value="Celsius"></h:outputLabel>
            <h:inputText  value="#temperatureConvertor.celsius"></h:inputText>
        </h:panelGrid>
        <h:commandButton action="#temperatureConvertor.celsiusToFahrenheit" value="Calculate"></h:commandButton>
        <h:commandButton action="#temperatureConvertor.reset" value="Reset"></h:commandButton>
        <h:messages layout="table"></h:messages>
    </h:form>


    <h:panelGroup rendered="#temperatureConvertor.initial!=true">
    <h3> Result </h3>
    <h:outputLabel value="Fahrenheit "></h:outputLabel>
    <h:outputLabel value="#temperatureConvertor.fahrenheit"></h:outputLabel>
    </h:panelGroup>
</f:view>
</body>
</html>

文件 faces-config.xml 包含:

<?xml version="1.0" encoding="UTF-8"?>

<faces-config
 xmlns="http://java.sun.com/xml/ns/javaee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_2_0.xsd"
    version="2.0">  
    <managed-bean>
        <managed-bean-name>temperatureConvertor</managed-bean-name>
        <managed-bean-class>hellojsf.TemperatureConvertor</managed-bean-class>
        <managed-bean-scope>session</managed-bean-scope>
    </managed-bean>

</faces-config>

我的插件具有以下层次结构:

plugin-name
---src
------class package
---------Activator.java
---------Application.java
---------ApplicationActionBarAdvisor.java
---------ApplicationWorkbenchWindowAdvisor.java
---------Perspective.java
---------TemperatureConvertor.java
---------TemperatureServlet.java
---META-INF
------MANIFEST.MF
---resources
-------WebContent
----------WEB-INF
-------------faces-config.xml
-------------web.xml
----------Convertor.jsp
---plugin.xml

Activator 类的方法 start() 中,我已经像这样启动了 Web 服务器:

public void start(BundleContext context) throws Exception 
        super.start(context);
        plugin = this;

        Bundle bundle = Platform.getBundle("org.eclipse.equinox.http.registry");
        if (bundle.getState() == Bundle.RESOLVED) 
            bundle.start(Bundle.START_TRANSIENT);
        

        Dictionary settings = new Hashtable();
        settings.put("http.enabled", Boolean.TRUE);
        settings.put("http.port", 8080);
        settings.put("http.host", "0.0.0.0");
        settings.put("https.enabled", Boolean.FALSE);
        settings.put("context.path", "/");
        settings.put("context.sessioninactiveinterval", 1800);

        try 
            JettyConfigurator.startServer(PLUGIN_ID + ".jetty", settings);
         catch (Exception e) 
            e.printStackTrace();
        
    

为此插件,我还添加了以下库:

JSTL:javax.servlet.jsp.jstl-1.2.1-javadoc.jar; javax.servlet.jsp.jstl-api-1.2.1-javadoc.jar JSF 2.0(Apache MyFaces JSF Core-2.0 API 2.0.2)

启动应用程序后,如果我在浏览器中输入 本地主机:8080/温度

它不知道在哪里可以找到Convertor.jsp。 我的问题是:如何配置此插件以了解资源位置 WebContent 和最重要的,如何配置插件以了解如何处理 JSF 并了解 faces-config.xml 和 web.xml。

例如,当我定义扩展 org.eclipse.equinox.http.registry.servlets 时,我可以做这样的事情吗? 类:javax.faces.webapp.FacesServlet 别名:/*.jsp

(FacesServlet要处理的所有文件*.jsp)?

非常感谢,如果问题很愚蠢,我很抱歉,但我是 RCP 插件、Jetty 和 JSF 领域的新手。

【问题讨论】:

我猜你已经解决了这个问题,否则你不会问关于 JSF 和所有这些东西的新问题。此外,如果您使用 JSF 2,那么您应该转向 Facelets。我建议您阅读What are the differences between JSP and Facelets?、What is the difference between JSF, Servlet and JSP? 和那里的链接。不要认为我反对你,相反我没有你的问题的确切答案,只是提供一些更好的路径的指导。 另外,如果您有任何问题的答案,您可以回答(并接受)这些问题,以帮助本指南中的其他人。 非常感谢您的建议!您猜对了。我解决了这个问题,但我没有时间为它写一个正确的答案。但很快我会带着答案回来。 @wallE 你准备好写答案了吗? 你只尝试过 localhost:8080/。您是否将战争文件复制到码头的战争文件夹中?它可以通过终端或 maven [mvn jetty:run] 运行 jetty 来获取文件。 【参考方案1】:

看看setting a context in jetty。您可以在启动服务器之前定义它。

public class OneWebApp

    public static void main(String[] args) throws Exception
    
        String jetty_home = System.getProperty("jetty.home","..");

        Server server = new Server(8080);

        WebAppContext webapp = new WebAppContext();
        webapp.setContextPath("/");
        webapp.setWar(jetty_home+"/webapps/test.war");
        server.setHandler(webapp);

        server.start();
        server.join();
    

【讨论】:

【参考方案2】:

org.eclipse.equinox.jsp.jasper.registry 中的 JSP Extension Factory 类提供 JSP 支持以与 servlets 扩展点结合使用。

JSPFactory 可以与 org.eclipse.equinox.http.registry 和 Servlets 扩展点结合使用,以允许通过扩展注册表以声明方式使用 JSP。

JSPFactory 将接受与捆绑包中的基本路径相对应的“路径”参数来查找 JSP 资源。该参数可以使用“:”分隔符方式设置,也可以通过xml参数设置。

例如class="org.eclipse.equinox.jsp.jasper.registry.JSPFactory:/A/PATH" 或

【讨论】:

以上是关于Eclipse RCP 插件 + 嵌入式 Jetty + JSF的主要内容,如果未能解决你的问题,请参考以下文章

使用最新插件启动eclipse RCP应用程序时出错(Eclipse 4.8)

Jacoco和Tycho surefire的Eclipse RCP插件代码介绍

在不修改 config.ini 的情况下向已安装的 eclipse rcp 软件添加插件

将语言包添加到 Eclipse RCP

Eclipse RCP 资源管理(自定义Project)一 (转)

在 eclipse RCP 中安装新插件/功能后,是不是有任何方法可以自动从磁盘中清除旧插件/功能?