有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

spring boot获得java。lang.NoClassDefFoundError:org/apache/catalina/connector/connector在wildFly 21中。十、

我正在尝试运行一个spring boot项目,该项目在嵌入式tomcat上运行完美,但部署到wildfly 21时。x抛出java。lang.NoClassDefFoundError:org/apache/catalina/connector/connector

任何帮助都将不胜感激

下面是我的代码片段

主文件:-

import org.apache.catalina.connector.Connector;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory;
import org.springframework.boot.web.servlet.server.ServletWebServerFactory;
import org.springframework.context.annotation.Bean;

@SpringBootApplication
public class CdPlaylistadapterApplication {

    @Value("${http.port}")
    private int httpPort;

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

    @Bean
    public ServletWebServerFactory servletContainer() {
        TomcatServletWebServerFactory tomcat = new TomcatServletWebServerFactory();
        tomcat.addAdditionalTomcatConnectors(createStandardConnector());
        return tomcat;
    }

    private Connector createStandardConnector() {
        Connector connector = new Connector("org.apache.coyote.http11.Http11NioProtocol");
        connector.setPort(httpPort);
        return connector;
    }
}

我的pom。xml片段

        <cxf.version>3.4.0</cxf.version>
    </properties>
    <dependencies>
        <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>javax.servlet</groupId>
             <artifactId>javax.servlet-api</artifactId>
             <scope>provided</scope>
          </dependency> 
         <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-tomcat</artifactId>
            <scope>provided</scope>
        </dependency>

错误:-

Caused by: java.lang.IllegalStateException: Failed to introspect Class [com.att.dtss.playlistadapter.CdPlaylistadapterApplication] from ClassLoader [ModuleClassLoader for Module "deployment.cd-playlistadapter-0.0.1-SNAPSHOT.war" from Service Module Loader]
        at org.springframework.util.ReflectionUtils.getDeclaredMethods(ReflectionUtils.java:481)
        at org.springframework.util.ReflectionUtils.getDeclaredMethods(ReflectionUtils.java:455)
        at org.springframework.core.type.StandardAnnotationMetadata.getAnnotatedMethods(StandardAnnotationMetadata.java:151)
        ... 39 more
Caused by: java.lang.NoClassDefFoundError: org/apache/catalina/connector/Connector
        at java.lang.Class.getDeclaredMethods0(Native Method)
        at java.lang.Class.privateGetDeclaredMethods(Class.java:2701)
        at java.lang.Class.getDeclaredMethods(Class.java:1975)
        at org.springframework.util.ReflectionUtils.getDeclaredMethods(ReflectionUtils.java:463)
        ... 41 more
Caused by: java.lang.ClassNotFoundException: org.apache.catalina.connector.Connector from [Module "deployment.cd-playlistadapter-0.0.1-SNAPSHOT.war" from Service Module Loader]
        at org.jboss.modules.ModuleClassLoader.findClass(ModuleClassLoader.java:255)
        at org.jboss.modules.ConcurrentClassLoader.performLoadClassUnchecked(ConcurrentClassLoader.java:410)
        at org.jboss.modules.ConcurrentClassLoader.performLoadClass(ConcurrentClassLoader.java:398)
        at org.jboss.modules.ConcurrentClassLoader.loadClass(ConcurrentClassLoader.java:116)
        ... 45 more

共 (1) 个答案

  1. # 1 楼答案

    org.apache.catalina.connector.Connector是Tomcat的一部分。为了让应用程序在外部servlet容器上正确工作,Tomcat的嵌入副本必须位于web应用程序的类路径上(即/WEB-INF/lib)。通过将spring-boot-starter-tomcat的范围设置为provided,可以正确地设置它

    但是现在您遇到了一个问题,因为CdPlaylistadapterApplication在它的一个方法签名中有Connector,而Spring启动在创建CdPlaylistadapterApplication类的实例时失败

    要解决这个问题,您需要将Tomcat特定的配置移动到另一个类(甚至是嵌套的),并使用@ConditionalOnClass注释保护它:

    @SpringBootApplication
    public class CdPlaylistadapterApplication extends SpringBootServletInitializer {
    
       @Configuration
       @ConditionalOnClass({Servlet.class, Tomcat.class, UpgradeProtocol.class})
       static class EmbeddedConfiguration {
    
          @Value("${http.port}")
          private int httpPort;
    
          @Bean
          public ServletWebServerFactory servletContainer() {
             TomcatServletWebServerFactory tomcat = new TomcatServletWebServerFactory();
             tomcat.addAdditionalTomcatConnectors(createStandardConnector());
             return tomcat;
          }
    
          private Connector createStandardConnector() {
             Connector connector = new Connector("org.apache.coyote.http11.Http11NioProtocol");
             connector.setPort(httpPort);
             return connector;
          }
       }
    
       public static void main(String[] args) {
          SpringApplication.run(CdPlaylistadapterApplication.class, args);
       }
    }