SpringBoot部署在Weblogic的操作步骤

网友投稿 352 2022-10-09


SpringBoot部署在Weblogic的操作步骤

SpringBoot版本:2.0.1.RELEASE

WebLogic版本:Weblogic 12c

本文为测试SpringBoot项目部署在Weblogic服务器上的测试项目。不牵扯到任何的业务逻辑。可以直接将本文重点标注的几个点移至您现有的项目。

SpringBoot项目的pom.xml文件

其中需要添加的依赖为:

org.springframework.boot

spring-boot-legacy

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-tomcat

provided

打成war包文件:war

完整文件如下:

xsi:schemaLocation="http://maven.apache.org/http://POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">

4.0.0

org.springframework.boot

spring-boot-starter-parent

2.0.1.RELEASE

com.example

demo

0.0.1-SNAPSHOT

demo

Springboot project run on weblogic.

war

1.8

org.springframework.boot

NUEnpD spring-boot-starter

org.springframework.boot

spring-boot-starter-web

org.springframework.boot

spring-boot-legacy

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-tomcat

provided

org.springframework.boot

spring-boot-maven-plugin

xsi:schemaLocation="http://maven.apache.org/http://POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">

4.0.0

org.springframework.boot

spring-boot-starter-parent

2.0.1.RELEASE

com.example

demo

0.0.1-SNAPSHOT

demo

Springboot project run on weblogic.

war

1.8

org.springframework.boot

NUEnpD spring-boot-starter

org.springframework.boot

spring-boot-starter-web

org.springframework.boot

spring-boot-legacy

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-tomcat

provided

org.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为你项目的启动类文件的目录。

contextConfigLocation

com.example.demo.DemoApplication

org.springframework.boot.legacy.context.web.SpringBootContextLoaderListener

appServlet

org.springframework.web.servlet.DispatcherServlet

contextAttribute

org.springframework.web.context.WebApplicationContext.ROOT

1

appServlet

/

weblogic.xml,其中/demo为项目启动后的访问路径。如果不需要,直接改为/即可

xmlns:xsi="http://w3.org/2001/XMLSchema-instance"

xsi:schemaLocation="hNUEnpDttp://xmlns.oracle.com/weblogic/weblogic-web-app http://xmlns.oracle.com/weblogic/weblogic-web-app/1.3/weblogic-web-app.xsd">

org.slf4j

javax.validation.*

org.hibernate.*

javax.el.*

org.springframework.*

/demo

xmlns:xsi="http://w3.org/2001/XMLSchema-instance"

xsi:schemaLocation="hNUEnpDttp://xmlns.oracle.com/weblogic/weblogic-web-app http://xmlns.oracle.com/weblogic/weblogic-web-app/1.3/weblogic-web-app.xsd">

org.slf4j

javax.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

@SpringBootApplication

public class DemoApplication extends SpringBootServletInitializer implements WebApplicationInitializer {

@Override

protected 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的配置,打包试一下是否成功。

若使用本文的配置,建议使用全套呦,可能因为很小的细节不一致,就会导致项目部署出错。


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:利用Vulnhub复现漏洞 - Couchdb 任意命令执行漏洞(CVE-2017-12636)
下一篇:利用Vulnhub复现漏洞 - Couchdb 垂直权限绕过漏洞(CVE-2017-12635)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~