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

完整文件如下:



    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
            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为项目启动后的访问路径。如果不需要,直接改为/即可




    
        
            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

详细步骤如下图:

SpringBoot部署在Weblogic的操作步骤_第1张图片

SpringBoot部署在Weblogic的操作步骤_第2张图片

SpringBoot部署在Weblogic的操作步骤_第3张图片

SpringBoot部署在Weblogic的操作步骤_第4张图片 SpringBoot部署在Weblogic的操作步骤_第5张图片

SpringBoot部署在Weblogic的操作步骤_第6张图片

显示部署成功后,在浏览器输入地址访问:http://192.168.2.10:7001/demo/test

系统测试

显示结果如下图:

在这里插入图片描述

程序源码

本文涉及到的项目源码已经push到github上,需要的小伙伴可以去拿一下。

如果项目一直部署不成功,建议小伙伴创建一个新的空项目,然后只放必须的pom依赖,放入weblogic的配置,打包试一下是否成功。

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

以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。

你可能感兴趣的:(SpringBoot部署在Weblogic的操作步骤)