gpt4 book ai didi

java - Spring 启动: Can't Autowire Class from Other Jar Library

转载 作者:搜寻专家 更新时间:2023-10-30 19:42:10 24 4
gpt4 key购买 nike

我正在开发一个依赖于两个具有不同实现的数据项目的 SpringBoot 应用程序(例如 MyApp):

data-jdbc.jar

  • 使用 spring-boot-starter-jdbc 构建,它公开了我的应用程序将使用的 JDBCDataService 类

示例代码:

@Service 
public class JDBCDataServiceImpl implements JDBCDataService {

@Autowired
private JDBCDataRepository jdbcDataRepository;
...
}
  • 使用包 my.data.jdbc
  • 没有SpringBoot主类。仅为单元测试类创建的 Spring 配置
  • 存储库类正在使用 JDBCTemplate

示例存储库:

@Repository
public class JDBCDataRepositoryImpl implements JDBCDataRepository {

@Autowired
protected JdbcTemplate jdbcTemplate;
...
}

data-jpa.jar

  • 使用 spring-boot-starter-data-jpa 构建,它还公开了我的应用程序也将使用的 JPADataService 类

示例代码:

@Service 
public class JPADataServiceImpl implements JPADataService {

@Autowired
private JPADataRepository jpaDataRepository;
...
}
  • 使用包 my.data.jpa
  • 没有SpringBoot主类。仅为单元测试类创建的 Spring 配置
  • 存储库类扩展了 CrudRepository 接口(interface)

示例存储库:

@Repository
public interface JPADataRepository extends CrudRepository<MyObject, Integer{
...
}

在我的 SpringBoot 项目中,我有以下 SpringBoot 主应用程序:

@SpringBootApplication
public class MyApp extends SpringBootServletInitializer {
}

在我的业务服务 MainService 类中,我有以下注入(inject)

@Service
public class MainServiceImpl implements MainService {

@Autowired
private JDBCDataService jdbcDataService;

@Autowired
private JPADataService jpaDataService;

但是,我遇到了问题 “无法 Autowiring 。找不到 'JPADataService' 类型的 beans”,它只存在于 JPADataService 类中,但对于 JDBCService 类。

我已经尝试了在以下问题中找到的解决方案,但这些都不适用于我的情况:

Can't I @Autowire a Bean which is present in a dependent Library Jar?

@ComponentScan(basePackages = {"org.example.main", "package.of.user.class"})

How can I @Autowire a spring bean that was created from an external jar?

@Configuration
@ComponentScan("com.package.where.my.class.is")
class Config {
...
}

我现在已经找到了我的问题的解决方案。为了扫描我的数据库,我必须将我的主要 MyApp.java 包向上移动一个级别。

我没有将我的 MyApp.java 放在 my.app 包下,而是必须将它移动到 my 下才能成功扫描我的包含 my.data.jpamy.data.jdbc 包的库。

最佳答案

我现在已经找到了我的问题的解决方案。为了扫描我的数据库,我必须将我的主要 MyApp.java 包向上移动一个级别。

我没有将我的 MyApp.java 放在 my.app 包下,而是必须将它移动到 my 下才能成功扫描我的包含 my.data.jpamy.data.jdbc 包的库。

关于java - Spring 启动: Can't Autowire Class from Other Jar Library,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38790344/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com