代码之家  ›  专栏  ›  技术社区  ›  Thomas Lann

重新打包失败:使用Spring Boot Starter父版本2.1.2.release创建库时找不到主类

  •  0
  • Thomas Lann  · 技术社区  · 5 年前

    我在Spring Security中创建了一个示例资源服务器,其中包含 WebSecurityConfigurerAdapter . 当我更新父级时 spring-boot-starter-parent 在2.0.8到2.1.2以及 spring-boot-maven-plugin 我感到恐惧 repackage failed: Unable to find main class 版本2.0.8 弹簧启动父 没有这个问题。

    更新:这是在执行MVN清理编译安装时发生的。可以找到父级为2.0.8的代码版本 here . 只需将pom.xml spring starter父级从2.0.8更改为2.1.2。

    我的图书馆POM如下。

    <?xml version="1.0" encoding="UTF-8"?>
    <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.utils.security</groupId>
      <artifactId>resource-config</artifactId>
      <version>1.0.1</version>
      <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
        <java.version>1.8</java.version>
        <maven.compiler.source>1.8</maven.compiler.source>
        <maven.compiler.target>1.8</maven.compiler.target>
      </properties>
    
      <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.1.2.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
      </parent>
    
      <dependencies>
        <dependency>
          <groupId>org.springframework.boot</groupId>
          <artifactId>spring-boot-starter-security</artifactId>
        </dependency>
        <dependency>
          <groupId>org.springframework.boot</groupId>
          <artifactId>spring-boot-starter</artifactId>
          <version>2.1.2.RELEASE</version>
        </dependency>
        <dependency>
          <groupId>org.springframework.boot</groupId>
          <artifactId>spring-boot-starter-web</artifactId>
          <version>2.1.2.RELEASE</version>
        </dependency>
        <dependency>
          <groupId>org.springframework.security</groupId>
          <artifactId>spring-security-config</artifactId>
          <version>5.1.3.RELEASE</version>
        </dependency>
        <dependency>
          <groupId>org.springframework.security</groupId>
          <artifactId>spring-security-oauth2-jose</artifactId>
          <version>5.1.3.RELEASE</version>
        </dependency>
        <!-- https://mvnrepository.com/artifact/org.springframework.security/spring-security-oauth2-resource-server -->
        <dependency>
          <groupId>org.springframework.security</groupId>
          <artifactId>spring-security-oauth2-resource-server</artifactId>
          <version>5.1.3.RELEASE</version>
        </dependency>
        <dependency>
          <groupId>org.springframework.security</groupId>
          <artifactId>spring-security-web</artifactId>
          <version>5.1.3.RELEASE</version>
        </dependency>
      </dependencies>
    
      <build>
        <plugins>
          <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
            <version>2.1.2.RELEASE</version>
            <executions>
              <execution>
                <goals>
                  <goal>repackage</goal>
                </goals>
                <configuration>
                  <skip>true</skip>
                </configuration>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    
    </project>
    

    用于定义批注的类。

    
    import com.example.utils.security.resource.autoconfig.ResourceServerConfig;
    import org.springframework.context.annotation.Import;
    
    import java.lang.annotation.*;
    
    @Target(ElementType.TYPE)
    @Retention(RetentionPolicy.RUNTIME)
    @Documented
    @Import({ResourceServerConfig.class})
    public @interface EnableExampleResourceServer {
    }
    

    Web安全配置适配器

    package com.example.utils.security.resource.autoconfig;
    
    import org.springframework.context.annotation.Configuration;
    import org.springframework.core.PriorityOrdered;
    import org.springframework.core.annotation.Order;
    import org.springframework.http.HttpMethod;
    import org.springframework.security.config.annotation.web.builders.HttpSecurity;
    import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
    import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
    
    @Configuration
    @EnableWebSecurity
    @Order(PriorityOrdered.HIGHEST_PRECEDENCE + 500)
    public class ResourceServerConfig extends WebSecurityConfigurerAdapter {
    
        @Override
        protected void configure(HttpSecurity http) throws Exception {
            http
                    .csrf().disable()
                    .anonymous().disable()
                    .logout().disable()
                    .formLogin().disable()
                    .httpBasic().disable()
                    .authorizeRequests()
                    .antMatchers(HttpMethod.OPTIONS).permitAll()
                    .anyRequest().authenticated()
                    .and()
                    .oauth2ResourceServer().jwt();
        }
    }
    
    2 回复  |  直到 5 年前
        1
  •  1
  •   Stephane Nicoll    5 年前

    发行说明描述了 the repackage goal has an identifier now 允许更容易地覆盖 重新包装 执行。

    上面的结构有点奇怪。如果您不希望重新打包发生,那么为什么要定义目标呢?不要定义目标,重新打包也不会发生,因为只有在显式定义插件时,父级才会提供默认执行。

    如果您需要为不同的原因定义它,那么上面的链接将解释您应该做什么。目前,您正在重新定义 重新包装 目标。

        2
  •  0
  •   Sai prateek    5 年前

    可能有两种可能性-

    1. main() 项目方法或

    2. 源目录的位置错误。必须使用sourcesets指令来修复此问题。源目录应该类似于 src/main/java/your/package.