weblogic部署springboot项目
生活随笔
收集整理的這篇文章主要介紹了
weblogic部署springboot项目
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
將springboot項目打包部署到weblogic上。? springboot 需要修改的文件
pom.xml
<!-- 打war包--> <packaging>war</packaging><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId><exclusions><exclusion><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-tomcat</artifactId></exclusion></exclusions> </dependency><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-tomcat</artifactId><scope>provided</scope> </dependency>修改springboot啟動類
@SpringBootApplication public class ServiceApplication extends SpringBootServletInitializer implements WebApplicationInitializer {@Overrideprotected SpringApplicationBuilder configure(SpringApplicationBuilder application) {return application.sources(ServiceApplication.class);}public static void main(String[] args) {SpringApplication.run(ServiceApplication.class, args);}}添加weblogic.xml
?在main目錄下創建webapp目錄,在webapp下創建WEB-INF目錄,然后在WEB-INF下創建weblogic.xml文件。
<?xml version="1.0" encoding="UTF-8"?> <wls:weblogic-web-appxmlns:wls="http://xmlns.oracle.com/weblogic/weblogic-web-app"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/ejb-jar_3_0.xsd http://xmlns.oracle.com/weblogic/weblogic-web-app http://xmlns.oracle.com/weblogic/weblogic-web-app/1.4/weblogic-web-app.xsd"><!-- 訪問路徑 --><wls:context-root>demoservice</wls:context-root><!-- 優先加載WEB-INF下lib中的jar包 --><wls:prefer-web-inf-classes>true</wls:prefer-web-inf-classes><wls:container-descriptor><wls:prefer-application-packages><wls:package-name>org.slf4j</wls:package-name></wls:prefer-application-packages></wls:container-descriptor> </wls:weblogic-web-app>總結
以上是生活随笔為你收集整理的weblogic部署springboot项目的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 电脑总是弹出广告怎么办?
- 下一篇: VB程序设计总结