当前位置: 首页 > 知识库问答 >
问题:

无法在spring启动项目中使用自定义jar

申光临
2023-03-14

我正在尝试将SpringBoot应用程序的一个服务用于另一个SpringBoot服务。由于一些限制,我不得不使用基于jar的方法,即,我使用命令maven build构建第一个项目,并使用为该项目创建的jar。

我将该jar添加到其他/依赖项目的构建路径中。但是我不能看到我的主要项目的服务。我也不能自动连接它们。几天前,不知何故,我能够看到服务,但是依赖项目的maven构建失败了,因为它无法在依赖项目中找到自动生成服务的源包(一个明显的失败,因为那个包在主项目中)。我试过了很多事情,但我不确定现在如何继续。

主要项目

JartestApplication。JAVA

@SpringBootApplication
public class JartestApplication 
{

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

}

Service.java

@FunctionalInterface
public interface DbService 
{
    public BigInteger getRowCount(String tableName) throws Exception;
}

服务mpl.java

@Service
public class DbServiceImpl implements DbService
{

    @Autowired
    EntityManager em;

    @Override
    public BigInteger getRowCount(String tableName) throws Exception
    {
        return (BigInteger) em.createNativeQuery("select count(*) from "+tableName).getSingleResult();
    }

}

波姆。xml

<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.1.8.RELEASE</version>
        <relativePath /> <!-- lookup parent from repository -->
    </parent>
    <groupId>com.example</groupId>
    <artifactId>jartest</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>jartest</name>
    <description>Demo project for Spring Boot</description>

    <properties>
        <java.version>1.8</java.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-jpa</artifactId>
        </dependency>

    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

</project>

从属项目

ImportjartestApplication。JAVA


@SpringBootApplication
public class ImportjartestApplication 
{

    public static void main(String[] args)
    {
        ApplicationContext context = SpringApplication.run(ImportjartestApplication.class, args);
        Test test = context.getBean(Test.class);
        System.err.println(test.check("test"));
    }

}

测验JAVA


@FunctionalInterface
public interface Test 
{
    public BigInteger check(String name);
}

测试。JAVA

@Service
public class TestImpl implements Test 
{

    //@Autowired    ---  what i want  to do
    //DbService service;    --- service is not visible even after i have added the jar of main project into the build path of this project

    @Override
    public BigInteger check(String name) 
    {
        return null;
        //return service.getRowCount(name);  -- my actual aim
    }

}

有没有其他方法可以让我在不共享代码的情况下共享我的服务?

由于一些限制,我无法将我的服务公开为rest服务,所以我尝试将主服务部署为jar,并将其添加到依赖项目的构建路径中。

共有2个答案

颜熙云
2023-03-14
after lots of debugging and reading the docs i found the solution and hereby i'm posting the steps to it....

1. Used the below build configuration in source project

    <build>
        <finalName>generator</finalName>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <executions>
                    <execution>
                        <id>repackage</id>
                        <configuration>
                            <classifier>exec</classifier>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

2. Included the dependency into target project as system scope 

        <dependency>
            <groupId>generator</groupId>
            <artifactId>generator</artifactId>
            <scope>system</scope>
            <version>1.0</version>
            <systemPath>${project.basedir}\src\lib\generator.jar
            </systemPath>
        </dependency>

3. Included the following build configuration in target project


    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <!--- begins - -->
                <configuration>
                    <includeSystemScope>true</includeSystemScope>
                </configuration>
                <!--- ends - -->
            </plugin>
        </plugins>
    </build>

4. Used component scan at root level in target class

@SpringBootApplication
@ComponentScan("com.example.jar.service")
public class JartestApplication 
{
    public static void main(String[] args) throws IOException 
    {
          System.out.println("Hello world");
    }
}
柏麒
2023-03-14

在您的springbootmaven插件中添加以下条目。

<plugin>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-maven-plugin</artifactId>
  <!--- begins --->
  <configuration>
    <includeSystemScope>true</includeSystemScope>
  </configuration>
  <!--- ends --->
</plugin>

 类似资料:
  • Spring Boot是否可以在上下文中正确地加载旧的jar?旧jar中的pom文件是否不会受到影响,因为它引用了一些父级的spring版本以及使用相同版本的jar?或者这些JAR只使用spring boot添加的依赖关系? 有人能建议我哪里做错了吗?

  • 我正在开发一个Spring启动自定义启动器,其中pom包含一些依赖项(其他启动器、库),并且这个启动器执行一些关于jwt过滤的配置,以允许过滤器处于安全水位。问题是当我在另一个项目(starter-消费者)中添加我的自定义启动器作为pom依赖项时,它似乎检测到我要导入的类,但IntelliJ什么也没做。 也许我没有正确打包启动器,或者至少我在里面编码的类。启动器在pom中包含的其他依赖项被成功添加

  • 我试图通过定义从WebSecurityConfigureAdapter扩展而来的配置类,为我的自定义安全配置(LDAP JWT)创建自己的spring启动程序。但是,当我使用此初学者启动应用程序时,我会得到: 我发现由于Spring Security性的这个问题,不再可能这样做了。Spring的WebSecurityConfiguration中有一个断言: 我解决了这个问题,在启动器中添加了以下内

  • 先安装的: npm install pdfjs-dist --save 报错按提示安装的: npm install --save babel-polyfill 也按网上说的把: main.js的第一行给了: import "babel-polyfill" 项目启动报错: 代码中这样使用的:

  • 想在tomcat上面运行前端项目,可是总是404,配置应该都是能匹配上的,请大家帮忙看看 尝试从绝对路径修改为相对路径,也没有解决,到底该怎么样才能运行起来呢

  • 我已经为我的产品创建了一个更新站点,它由一组Eclipse插件组成。我希望在安装产品后Eclipse启动时自动启动一些插件。 实际上,我知道Eclipse在配置\org.eclipse.equinox.simpleconfigurator\bundles.info文件中保存已安装插件的自动启动属性,并在插件安装后手动修改该文件。但是我想要一种自动化的方法来提供用户友好的安装过程。 有没有办法指定插