SpringBoot部署在Weblogic的操作步骤
SpringBoot版本:2.0.1.RELEASE
WebLogic版本:Weblogic 12c
本文为测试SpringBoot项目部署在Weblogic服务器上的测试项目。不牵扯到任何的业务逻辑。可以直接将本文重点标注的几个点移至您现有的项目。
SpringBoot项目的pom.xml文件
其中需要添加的依赖为:
org.springframework.boot spring-boot-legacy2.0.0.RELEASE org.springframework.boot spring-boot-starter-tomcatprovided
打成war包文件:war
完整文件如下:
4.0.0 org.springframework.boot spring-boot-starter-parent2.0.1.RELEASE com.example demo0.0.1-SNAPSHOT demo Springboot project run on weblogic. war1.8 org.springframework.boot spring-boot-starterorg.springframework.boot spring-boot-starter-weborg.springframework.boot spring-boot-legacy2.0.0.RELEASE org.springframework.boot spring-boot-starter-tomcatprovidedorg.springframework.boot spring-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.DemoApplication appServletorg.springframework.web.servlet.DispatcherServlet org.springframework.boot.legacy.context.web.SpringBootContextLoaderListener contextAttributeorg.springframework.web.context.WebApplicationContext.ROOT 1 appServlet/
weblogic.xml,其中
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 详细步骤如下图:
文章图片
文章图片
文章图片
文章图片
文章图片
文章图片
显示部署成功后,在浏览器输入地址访问:http://192.168.2.10:7001/demo/test
系统测试 显示结果如下图:
文章图片
程序源码 本文涉及到的项目源码已经push到github上,需要的小伙伴可以去拿一下。
如果项目一直部署不成功,建议小伙伴创建一个新的空项目,然后只放必须的pom依赖,放入weblogic的配置,打包试一下是否成功。
若使用本文的配置,建议使用全套呦,可能因为很小的细节不一致,就会导致项目部署出错。
【SpringBoot部署在Weblogic的操作步骤】以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。
推荐阅读
- 你到家了吗
- 闲杂“细雨”
- 杜月笙的口才
- 赢在人生六项精进二阶Day3复盘
- 祖母走了
- 樱花雨
- 眼观耳听美食的日子
- Activiti(一)SpringBoot2集成Activiti6
- “成长”读书社群招募
- 眉头开了