如何使用tomcat嵌入式弹簧启动应用程序能够在weblogic上运行?

时间:2018-01-23 23:21:25

标签: java spring tomcat weblogic12c

我正在尝试在网络逻辑服务器上运行我的春季启动应用程序(通过Jhipster制作)。

它的嵌入式tomcat非常好用,但是一旦我删除了tomcat依赖项,我就会开始看到更多的错误。

目前这一个:

[ERROR] Failed to execute goal org.springframework.boot:spring-boot-maven-plugin:1.5.9.RELEASE:repackage (default) on project myproject: Execution default of goal org.springframework.boot:spr
ing-boot-maven-plugin:1.5.9.RELEASE:repackage failed: Unable to find main class -> [Help 1]

我删除

后会发生这种情况
<dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-tomcat</artifactId>
    </dependency>

有什么方法可以打包我的应用程序让它在weblogic上运行?在谈论WL时,我是新手。

有什么想法吗?

1 个答案:

答案 0 :(得分:1)