Spring Boot + GET嵌入式配置

时间:2015-02-17 15:03:33

标签: gwt spring-boot embeddedwebserver

我想配置Spring Boot Embedded Servlet Container + GWT。我想要的方法是创建一个jar / war文件,其中只包含已编译的gwt文件&静态资源。我想从lib / *加载jar文件,从classpath加载配置文件。

我找不到任何有效的例子。实际上有一个https://github.com/Ekito/spring-boot-gwt,但所有的依赖和配置仍在战争中。

有人可以建议解决方案吗?

2 个答案:

答案 0 :(得分:4)

经过长时间的搜索&测试,这是我提出的解决方案:

```

<!-- POM -->
<modelVersion>4.0.0</modelVersion>
<groupId>fr.ekito.gwt</groupId>
<artifactId>gwt-boot</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Ekito Spring Boot GWT WebApp</name>

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>1.2.5.RELEASE</version>
</parent>

<properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
    <start-class>fr.ekito.gwt.server.ServerApplication</start-class>
    <java.version>1.7</java.version>

    <gwtVersion>2.6.0</gwtVersion>
    <googleGin>2.1.2</googleGin>
    <outputFolder>${project.build.directory}/${artifactId}</outputFolder>
</properties>

<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
        <exclusions>
            <exclusion>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-tomcat</artifactId>
            </exclusion>
        </exclusions>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-undertow</artifactId>
        <exclusions>
            <exclusion>
                <groupId>io.undertow</groupId>
                <artifactId>undertow-websockets-jsr</artifactId>
            </exclusion>
        </exclusions>
    </dependency>

    <dependency>
        <groupId>org.hibernate</groupId>
        <artifactId>hibernate-validator</artifactId>
    </dependency>

    <dependency>
        <groupId>com.google.gwt</groupId>
        <artifactId>gwt-user</artifactId>
        <version>${gwtVersion}</version>
    </dependency>
    <dependency>
        <groupId>com.google.gwt.inject</groupId>
        <artifactId>gin</artifactId>
        <version>${googleGin}</version>
    </dependency>
</dependencies>


<build>
    <plugins>
        <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
            <configuration>
                <mainClass>${start-class}</mainClass>
                <layout>ZIP</layout>
            </configuration>
        </plugin>
        <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>gwt-maven-plugin</artifactId>
            <version>${gwtVersion}</version>
            <executions>
                <execution>
                    <goals>
                        <goal>compile</goal>
                    </goals>
                </execution>
            </executions>
            <configuration>
                <runTarget>GwtWebApp.html</runTarget>
                <persistentunitcachedir>${project.build.directory}</persistentunitcachedir>
                <deploy>${project.build.directory}/gwt-deploy</deploy>
                <webappDirectory>${project.build.directory}/classes/public</webappDirectory>
            </configuration>
        </plugin>
    </plugins>
</build>

```

我的项目结构与原始项目https://github.com/Ekito/spring-boot-gwt相同,除了一些小变化:

  • 我没有 webapp 文件夹,而是 src / main / resources / public 文件夹,以及html&amp; ; css文件就在那里。
  • 不需要web.xml文件,spring-boot负责处理。
  • 不需要WEB-INF文件夹。

因此,我有一个可运行的jar,但是由org.springframework.boot.loader.PropertiesLauncher运行。单个jar按预期工作,Tomcat不按照此处的说明工作:http://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-developing-web-applications.html#boot-features-jsp-limitations

另外,我可以将jar文件夹移到jar文件之外,但是为了设置loader.path属性,我需要将它放到jar文件中的application.properties中。我应该可以使用-Dloader.path但是没有用。

我会和春季队一起检查。但到目前为止,这很有希望。

答案 1 :(得分:0)

我想为其他无法看到gwt编译器生成的静态文件的* .nocache.js请求并从其位置响应的人提供Gokhan答案的更多细节。

我也是从https://github.com/Ekito/spring-boot-gwt示例开始的,还没有看到像https://github.com/interseroh/demo-gwt-springboot那样的开箱即用的功能(我无法弄清楚它为什么起作用)。所以你应该使用

<webappDirectory>${project.build.directory}/${artifactId}/WEB-INF/classes/public</webappDirectory>

代替

 <webappDirectory>${project.build.directory}/classes/public</webappDirectory>

根据Gokhan的回答。而且,不要把战争放在包装部分以及war-maven-plugin上。这样,您就可以将生成的静态文件放入实际的/ public / classes /文件夹中,然后将其打包到jar中。