Openshift - Spring Boot - 创建新应用程序时出错 - 执行失败:'control start'

时间:2016-08-10 14:54:21

标签: spring-boot openshift

我正在尝试在Openshift上部署一个非常简单的Spring-Boot应用程序。 我正在从浏览器在线使用openshift创建 Tomcat 7(JBoss EWS 2.0)盒式磁带

我在创建它时遇到以下错误。 enter image description here

enter image description here 找不到任何解决方案。有人可以帮助解决这里出了什么问题。

Git网址:https://github.com/bhaskey/testingcloud

1 个答案:

答案 0 :(得分:1)

不确定错误的确切原因是什么。但是,我在您的代码中发现了以下问题。

  • Java版本不确定JBoss EWS 2.0是否支持1.7(在生成的pom.xml中是否支持1.7)
  • 您正在Tomcat服务器上部署,但spring-boot-starter-webspring-boot-starter-tomcat具有传递依赖性。您需要将tomcat依赖项设置为提供。
  • 你的包装是jar,你的spring boot maven插件不确定,它将如何部署到tomcat服务器的webapps目录。它使用openshift配置文件来构建项目。并且您的openshift个人资料可能无法正常工作。
  • 为了让Spring引导在外部应用服务器上运行,您需要使用extends SpringBootServletInitializer扩展您的主类

但是我建议你按照这些步骤创建可部署到openshift的spring boot项目。

  1. 从Web控制台或Eclipse openshift插件创建Tomcat 7(JBoss EWS 2.0)盒式磁带。
  2. 将项目克隆到本地计算机。
  3. 修改pom.xml,添加spring boot parent依赖项并仅添加依赖项。保持插件原样。 更新后的pom.xml看起来像这样。

    <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.openshif</groupId>
    <artifactId>cloudemo</artifactId>
    <packaging>war</packaging>
    <version>1.0</version>
    <name>cloudemo</name>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.4.0.RELEASE</version>
        <relativePath /> <!-- lookup parent from repository -->
    </parent>
    <repositories>
        <repository>
            <id>eap</id>
            <url>http://maven.repository.redhat.com/techpreview/all</url>
            <releases>
                <enabled>true</enabled>
            </releases>
            <snapshots>
                <enabled>true</enabled>
            </snapshots>
        </repository>
    </repositories>
    <pluginRepositories>
        <pluginRepository>
            <id>eap</id>
            <url>http://maven.repository.redhat.com/techpreview/all</url>
            <releases>
                <enabled>true</enabled>
            </releases>
            <snapshots>
                <enabled>true</enabled>
            </snapshots>
        </pluginRepository>
    </pluginRepositories>
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <maven.compiler.source>1.6</maven.compiler.source>
        <maven.compiler.target>1.6</maven.compiler.target>
        <java.version>1.6</java.version>
    </properties>
    <dependencies>
    
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-thymeleaf</artifactId>
        </dependency>
    
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
    
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-tomcat</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>javax.servlet-api</artifactId>
            <scope>provided</scope>
        </dependency>
    </dependencies>
    <profiles>
        <profile>
            <!-- When built in OpenShift the 'openshift' profile will be used when 
                invoking mvn. -->
            <!-- Use this profile for any OpenShift specific customization your app 
                will need. -->
            <!-- By default that is to put the resulting archive into the 'webapps' 
                folder. -->
            <!-- http://maven.apache.org/guides/mini/guide-building-for-different-environments.html -->
            <id>openshift</id>
            <build>
                <finalName>cloudemo</finalName>
                <plugins>
                    <plugin>
                        <artifactId>maven-war-plugin</artifactId>
                        <version>2.1.1</version>
                        <configuration>
                            <outputDirectory>webapps</outputDirectory>
                            <warName>ROOT</warName>
                        </configuration>
                    </plugin>
                </plugins>
            </build>
        </profile>
    </profiles>
    

  4. 修改MainClass文件

    @SpringBootApplication
    public class CloudemoApplication extends SpringBootServletInitializer  {
    
    
    @Override
    protected SpringApplicationBuilder configure(SpringApplicationBuilder builder) {
    
        return builder.sources(CloudemoApplication.class);
    }
    
    public static void main(String[] args) {
        SpringApplication.run(CloudemoApplication.class, args);
    }
    
  5. 由于您的应用程序不使用spring boot插件,您可能需要将所有html,css,js资源放在webapps目录下