4

我有一个使用休眠、freemarker 的 Spring MVC 应用程序。它被设置为一个多 Maven 项目。我正在使用 IntelliJ 终极版。

码头开始很好,但是当我去

http://localhost:8080/

它只是输出我项目的文件夹,我可以在浏览器中查看我的源代码!

这是我目前的设置:

    final Server server = new Server(8080);

    ProtectionDomain domain = HttpServer.class.getProtectionDomain();
    URL location = domain.getCodeSource().getLocation();

    WebAppContext webAppContext = new WebAppContext();
    webAppContext.setResourceBase(location.toExternalForm());
    webAppContext.setDescriptor(location.toExternalForm() + "/WEB-INF/web.xml");
    webAppContext.setContextPath("/");
    webAppContext.setParentLoaderPriority(true);

    server.setHandler(webAppContext);

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

我的项目布局是一个多maven项目(使用intelli J),布局是这样的:

/myapp/src/main/java/main.java (this contains the above code to start jetty)
/myapp/src/main/webapp
/myapp/src/main/webapp/assets
/myapp/src/main/webapp/WEB-INF
/myapp/src/main/webapp/WEB-INF/web-context.xml (spring config file)
/myapp/src/main/webapp/WEB-INF/web.xml
/myapp/src/main/webapp/WEB-INF/views/ (parent folder for my freemarker template files)
/myapp/src/main/webapp/WEB-INF/views/home/index.ftl 

我的 web.xml 是:

<context-param>
    <param-name>log4jConfigLocation</param-name>
    <param-value>classpath*:log4j.properties</param-value>
</context-param>

 <servlet>
    <servlet-name>myapp</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <init-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>WEB-INF/web-context.xml</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
</servlet>

<servlet-mapping>
    <servlet-name>myapp</servlet-name>
    <url-pattern>/</url-pattern>
</servlet-mapping>

当我在 IntelliJ (11 ulimitate) 中运行它时,我得到以下输出:

2012-08-15 19:17:11,611 [main] INFO  org.eclipse.jetty.server.Server - jetty-7.6.2.v20120308
2012-08-15 19:17:11,886 [main] INFO  org.eclipse.jetty.webapp.StandardDescriptorProcessor - NO JSP Support for /, did not find org.apache.jasper.servlet.JspServlet
2012-08-15 19:17:11,962 [main] INFO  org.eclipse.jetty.server.handler.ContextHandler - started o.e.j.w.WebAppContext{/,file:/Users/me/projects/myapp/myapp-web/target/classes/}
2012-08-15 19:17:12,021 [main] INFO  org.eclipse.jetty.server.AbstractConnector - Started SelectChannelConnector@0.0.0.0:8080

这显然是行不通的,因为当我使用带有 IntelliJ 的 tomcat 运行它时,我会得到一个巨大的输出,比如休眠、弹簧等。

我的 web 模块的 pom.xml 有:

..
 <packaging>war</packaging>
..
4

4 回答 4

4

如果您的目标是在生产中运行它,并且您已经使用 maven 来构建您的应用程序,我建议您首先创建实际的 war 包:

mvn clean package

然后,一旦你构建了你的 webapp,创建一个新的 Jetty 服务器,它从战争档案(而不是源代码)运行。

正如 Jetty手册所述,它应该是这样的:

    Server server = new Server(8080);

    WebAppContext webapp = new WebAppContext();
    webapp.setContextPath("/");
    webapp.setWar("path_to_the_war_file/your_app.war");
    server.setHandler(webapp);

    server.start();
    server.join();
于 2012-08-30T09:50:46.830 回答
2

您可能缺少上下文加载器侦听器。

<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>/WEB-INF/applicationContext.xml</param-value>
</context-param>
于 2012-08-16T03:28:46.223 回答
0

与其手动调用 Jetty main.java,不如参考您的 Maven Jetty 插件pom.xml,然后通过运行启动您的应用程序mvn jetty:run

<build>
  <plugins>
    <plugin>
      <groupId>org.mortbay.jetty</groupId>
      <artifactId>jetty-maven-plugin</artifactId>
      <version>8.1.4.v20120524</version>
    </plugin>
  </plugin>
</build>

相反,如果您的目标是创建一个WAR嵌入了 Jetty 副本的可执行文件,那么您希望这样处理任务:

    final Connector connector = new SelectChannelConnector();
    connector.setPort(8080);

    final Server server = new Server();
    server.addConnector(connector);
    server.setStopAtShutdown(true);

    final WebAppContext context = new WebAppContext();
    context.setContextPath("/");
    context.setServer(server);

    final ProtectionDomain protectionDomain = Main.class.getProtectionDomain();
    final URL location = protectionDomain.getCodeSource().getLocation();
    context.setWar(location.toExternalForm());
    server.addHandler(context);

    server.start();
    server.join();
于 2012-09-01T14:25:28.817 回答
0

您是否尝试过设置 defaultsDescriptor 参数

webAppContext.setDefaultsDescriptor(JETTY_HOME+"/etc/webdefault.xml");

JETTY_HOME 是你安装 jetty 的地方,你可以找到 JETTY_HOME/etc/webdefault.xml 包含必要的设置。

于 2012-09-03T13:57:40.777 回答