Spring 启动 + 获取嵌入式配置
Spring Boot + GWT embedded configuraiton
我想配置 Spring 引导嵌入式 Servlet 容器 + GWT。我想要的方法是创建一个只包含已编译的 gwt 文件和静态资源的 jar/war 文件。我想从 lib/* 加载 jar 并从类路径加载配置文件。
我找不到任何有效的例子。实际上有一个,https://github.com/Ekito/spring-boot-gwt,但所有依赖项和配置仍在 war。
有人可以提出解决方案吗?
经过长时间的搜索和测试,这是我想出的解决方案:
```
<!-- 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,除了一些小的变化:
- 我有 src/main/resources/public[=36 而不是 webapp 文件夹=] 文件夹,还有 html & css 文件。
- 不需要 web.xml 文件,spring-boot 处理它。
- 无需 WEB-INF 文件夹。
因此,我有一个 运行 可用的罐子,但是 org.springframework.boot.loader.PropertiesLauncher 运行。单个罐子按预期工作,Tomcat 不按此处所述工作:http://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-developing-web-applications.html#boot-features-jsp-limitations.
此外,我可以将 lib 文件夹移动到 jar 文件之外,但是我为了设置 loader.path
属性,我需要将它放在 jar 文件中的 application.properties文件。我应该可以使用 -Dloader.path 但没有用。
我会与 spring 团队确认。但到目前为止,它很有希望。
我想为那些看不到 gwt 编译器生成的静态文件的人提供更多关于 Gokhan 的回答的细节谎言 *。nocache.js 从他们的位置被请求和响应。
我也是从 https://github.com/Ekito/spring-boot-gwt example and haven't seen this working out of the box like in 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 以及 war-maven-plugin。因此,您将生成的静态文件放入实际的 /public/classes/ 文件夹中,然后打包到 jar 中。
我想配置 Spring 引导嵌入式 Servlet 容器 + GWT。我想要的方法是创建一个只包含已编译的 gwt 文件和静态资源的 jar/war 文件。我想从 lib/* 加载 jar 并从类路径加载配置文件。
我找不到任何有效的例子。实际上有一个,https://github.com/Ekito/spring-boot-gwt,但所有依赖项和配置仍在 war。
有人可以提出解决方案吗?
经过长时间的搜索和测试,这是我想出的解决方案:
```
<!-- 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,除了一些小的变化:
- 我有 src/main/resources/public[=36 而不是 webapp 文件夹=] 文件夹,还有 html & css 文件。
- 不需要 web.xml 文件,spring-boot 处理它。
- 无需 WEB-INF 文件夹。
因此,我有一个 运行 可用的罐子,但是 org.springframework.boot.loader.PropertiesLauncher 运行。单个罐子按预期工作,Tomcat 不按此处所述工作:http://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-developing-web-applications.html#boot-features-jsp-limitations.
此外,我可以将 lib 文件夹移动到 jar 文件之外,但是我为了设置 loader.path
属性,我需要将它放在 jar 文件中的 application.properties文件。我应该可以使用 -Dloader.path 但没有用。
我会与 spring 团队确认。但到目前为止,它很有希望。
我想为那些看不到 gwt 编译器生成的静态文件的人提供更多关于 Gokhan 的回答的细节谎言 *。nocache.js 从他们的位置被请求和响应。
我也是从 https://github.com/Ekito/spring-boot-gwt example and haven't seen this working out of the box like in 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 以及 war-maven-plugin。因此,您将生成的静态文件放入实际的 /public/classes/ 文件夹中,然后打包到 jar 中。