无法启动部署在Websphere 8.5.5上的springboot应用程序

时间:2018-11-01 09:39:14

标签: java spring-boot thymeleaf web-deployment websphere-8

我已经制作了一个Java应用程序,它具有Spring Boot 1.4.3.release(启动程序父项依赖项)和hibernate 5.0.12,以及与Oracle 11g的数据库连接,该数据库将部署在Websphere 8.5.5上。 问题是上述应用程序的war文件已部署在Websphere上,但启动时却出现错误,如下图所示。

enter image description here

  • 我尝试过的事情:
    1. 成功部署了没有任何数据库依赖性的war文件
    2. 成功部署了带有嵌入式数据库(H2,Derby)的战争文件
    3. 在Websphere 8.5.5上提供第三方持久性提供程序
    4. 尝试使用JNDI数据源

我还尝试检查Hibernate版本和JPA问题是否存在任何问题。

我添加的依赖项列表:

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

<properties>
 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <java.version>1.8</java.version>
</properties>

<dependencies>

 <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>



    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-thymeleaf</artifactId>
    </dependency>

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-tomcat</artifactId>
        <scope>provided</scope>
    </dependency>
    <!-- hot swapping, disable cache for template, enable live reload -->
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-devtools</artifactId>
        <optional>true</optional>
    </dependency>



    <dependency>
        <groupId>org.apache.poi</groupId>
        <artifactId>poi</artifactId>
        <version>3.15</version>
    </dependency>

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-data-jpa</artifactId>
    </dependency>

    <dependency>
        <groupId>org.apache.poi</groupId>
        <artifactId>poi-ooxml</artifactId>
        <version>3.15</version>
    </dependency>

    <dependency>
        <groupId>commons-io</groupId>
        <artifactId>commons-io</artifactId>
        <version>1.3.2</version>
    </dependency>

     <dependency>  
        <groupId>com.googlecode.json-simple</groupId>  
        <artifactId>json-simple</artifactId>  
    </dependency> 

    <dependency>
      <groupId>com.google.code.gson</groupId>
      <artifactId>gson</artifactId>  
    </dependency> 



    <dependency>
        <groupId>com.oracle</groupId>
        <artifactId>ojdbc6</artifactId>
        <version>11.2.0.3</version>
    </dependency>
    <!-- Optional, for bootstrap -->
    <dependency>
        <groupId>org.webjars</groupId>
        <artifactId>bootstrap</artifactId>
        <version>3.3.7</version>
    </dependency>

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-security</artifactId>
    </dependency>



</dependencies>
<build>
  <finalName>oracleapp</finalName>
    <plugins>
        <!-- Package as an executable jar/war -->
        <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
        </plugin>
    </plugins>
</build>

请帮帮我。

下面是项目结构

enter image description here

1 个答案:

答案 0 :(得分:1)

您遇到的问题是您的Main类所在的位置的问题。您需要将其移至可以查看所有其他软件包的根软件包。类似于以下结构。

src/main/java
    -> SpringBootWebApplication (which I believe is your Main class)
        -> All other packages

这将使您的主要人员找到您要查找的文件。