SpringBoot部署在Weblogic的操作步骤

SpringBoot版本:2.0.1.RELEASE
WebLogic版本:Weblogic 12c
本文为测试SpringBoot项目部署在Weblogic服务器上的测试项目。不牵扯到任何的业务逻辑。可以直接将本文重点标注的几个点移至您现有的项目。
SpringBoot项目的pom.xml文件 其中需要添加的依赖为:

org.springframework.bootspring-boot-legacy2.0.0.RELEASEorg.springframework.bootspring-boot-starter-tomcatprovided

打成war包文件:war
完整文件如下:
4.0.0org.springframework.bootspring-boot-starter-parent2.0.1.RELEASE com.exampledemo0.0.1-SNAPSHOTdemoSpringboot project run on weblogic.war1.8org.springframework.bootspring-boot-starterorg.springframework.bootspring-boot-starter-weborg.springframework.bootspring-boot-legacy2.0.0.RELEASEorg.springframework.bootspring-boot-starter-tomcatprovidedorg.springframework.bootspring-boot-maven-plugin

添加web.xml和weblogic.xml文件 在main目录下创建webapp目录,和java、resources同级。
在webapp目录下添加WEB-INF目录,在WEB-INF目录下创建web.xml和weblogic.xml文件。
web.xml和weblogic.xml文件内容如下:
web.xml,其中com.example.demo.DemoApplication为你项目的启动类文件的目录。
contextConfigLocationcom.example.demo.DemoApplicationorg.springframework.boot.legacy.context.web.SpringBootContextLoaderListenerappServletorg.springframework.web.servlet.DispatcherServletcontextAttributeorg.springframework.web.context.WebApplicationContext.ROOT1appServlet/

weblogic.xml,其中/demo为项目启动后的访问路径。如果不需要,直接改为/即可
org.slf4jjavax.validation.*org.hibernate.*javax.el.*org.springframework.*/demo

项目启动类:DemoApplication.java 注意将启动类继承SpringBootServletInitializer, 实现WebApplicationInitializer
package com.example.demo; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.builder.SpringApplicationBuilder; import org.springframework.boot.web.servlet.support.SpringBootServletInitializer; import org.springframework.web.WebApplicationInitializer; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RestController; @RestController@SpringBootApplicationpublic class DemoApplication extends SpringBootServletInitializer implements WebApplicationInitializer {@Overrideprotected SpringApplicationBuilder configure(SpringApplicationBuilder application) {return application.sources(DemoApplication.class); }public static void main(String[] args) {SpringApplication.run(DemoApplication.class, args); }@GetMapping("/test")public String test(){return "test"; }}

以上项目配置完成,执行mvn clean package打成war文件。可以直接使用idea的maven打包。
部署项目到weblogic 详细步骤如下图:
SpringBoot部署在Weblogic的操作步骤
文章图片

SpringBoot部署在Weblogic的操作步骤
文章图片

SpringBoot部署在Weblogic的操作步骤
文章图片

SpringBoot部署在Weblogic的操作步骤
文章图片
SpringBoot部署在Weblogic的操作步骤
文章图片

SpringBoot部署在Weblogic的操作步骤
文章图片

显示部署成功后,在浏览器输入地址访问:http://192.168.2.10:7001/demo/test
系统测试 显示结果如下图:
SpringBoot部署在Weblogic的操作步骤
文章图片

程序源码 本文涉及到的项目源码已经push到github上,需要的小伙伴可以去拿一下。
如果项目一直部署不成功,建议小伙伴创建一个新的空项目,然后只放必须的pom依赖,放入weblogic的配置,打包试一下是否成功。
若使用本文的配置,建议使用全套呦,可能因为很小的细节不一致,就会导致项目部署出错。
【SpringBoot部署在Weblogic的操作步骤】以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。

    推荐阅读