Weblogic 中使用 Java 7 的 Spring Boot

标签 spring spring-boot java-7 weblogic11g embedded-tomcat-7

我需要在 weblogic server 11g 中部署 spring boot 应用程序。 weblogic 服务器仅支持 Java 7。请协助我提供正确的 spring boot 版本,如果我使用 spring boot 版本 1.5.6.RELEASE,我会收到以下错误。

test 悬停时会显示以下消息。 “这条线有多个标记 - 无法解析类型 javax.servlet.ServletContext。它间接引用自 所需的 .class 文件 - 无法解析 javax.servlet.ServletException 类型。它间接引用自 所需的 .class 文件"

应用程序.java

package com.example.ap;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.web.support.SpringBootServletInitializer;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.web.WebApplicationInitializer;

@SpringBootApplication
@EnableAutoConfiguration
@ComponentScan({ "com.example.ap" })
public class Application extends SpringBootServletInitializer implements 
WebApplicationInitializer {

public static void main(String[] args) {
    SpringApplication.run(Application.class, args);
}

@Override
protected SpringApplicationBuilder configure(SpringApplicationBuilder 
builder) {
    return builder.sources(Application.class);
}
}

pom.xml

<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.example.ap</groupId>
<artifactId>test</artifactId>
<version>0.0.1</version>
<packaging>war</packaging>

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>1.5.6.RELEASE</version>
    <relativePath />
</parent>

<properties>
    <java-version>1.7</java-version>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
    <plugins>
        <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
        </plugin>
    </plugins>
</build>
<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-tomcat</artifactId>
        <scope>provided</scope>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-test</artifactId>
        <scope>test</scope>
    </dependency>
</dependencies>
</project>

资源 Controller .java

package com.example.ap;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;

@RestController
@RequestMapping("/resource")
public class ResourceController {

    @RequestMapping(method = RequestMethod.GET)
    String readResource() {
        return "hello!";
    }
}

在 src/main/webapp/WEB-INF 文件夹中,我有 weblogic.xml 和 dispatcherServlet-servlet.xml

我排除了嵌入式tomcat,因为我需要在weblogic中部署它。请帮我找出问题所在。

weblogic.xml

<?xml version="1.0" encoding="UTF-8"?>
<wls:weblogic-web-app
xmlns: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/web-app_2_5.xsd 
http://xmlns.oracle.com/weblogic/weblogic-web-app  
http://xmlns.oracle.com/weblogic/weblogic-web-app/1.3/weblogic-web-app.xsd">
<wls:context-root>sg-manutouch-lite-api</wls:context-root>
<wls:container-descriptor>
    <wls:prefer-application-packages>
        <wls:package-name>org.slf4j.*</wls:package-name>
        <wls:package-name>org.springframework.*</wls:package-name>
    </wls:prefer-application-packages>
</wls:container-descriptor>
<wls:weblogic-version>10.3.6</wls:weblogic-version>

</wls:weblogic-web-app>

dispatcherServlet-servlet.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans.xsd">

最佳答案

Weblogic 11g(10.3.4) 将支持 servlet 2.5(max)。如果需要使用 servlet 2.5 创建应用程序,则 web.xml 是必需的。 Spring Boot 通过使用 SpringBootServletInitializer 配置应用程序的方式,WebApplicationInitializer 将仅从 servlet 3.0 开始支持。 感谢 M.Denium 的指导。

关于Weblogic 中使用 Java 7 的 Spring Boot,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55294490/

相关文章:

spring - 没有定义类型的唯一 bean : expected single bean but found 0:

java - 如何在我的代码中对 try catch block 进行 Junit 测试

java - 请求范围的 bean 的 bean 创建错误

java - build b144 是 java-7 当前的最新版本吗?

java - Mongo Java Spring 复合索引不会设置,并且会清除之前设置的索引

java - 在生产环境中使用带有Elasticsearch alpha 3版本的Hibernate Search有什么危险?

spring - Spring Boot JPA 中的全文搜索

java - spring.datasource.initialization-mode 的可能值是什么?

Java 7,尝试资源 : can i omit creating Connection and PreparedStatement?

java - 多个平台,一个 JDK 安装