使用 @JdbcRepository 注释关联 JDBC 数据源名称
Associate JDBC Datasource Name Using @JdbcRepository annotation
在 docs 中,它指出
The @JdbcRepository annotation accepts an optional string value which represents the name of the connection or datasource in a multiple datasource scenario. By default Micronaut Data will look for the default datasource.
但是,我在此注释中看不到任何此类值参数 - 只有方言。
这是一个错误还是我遗漏了什么?
Is this an error or am I missing something?
我认为是前者。如果您在 https://github.com/micronaut-projects/micronaut-data/issues 提交问题,我们可以解决。
感谢反馈!
这是一个完整的片段,使用方言和数据源:
@Repository(value = "inventoryDataSource")
@JdbcRepository(dialect = Dialect.ORACLE)
public interface PhoneRepository extends CrudRepository<Phone, Integer> {
Optional<Phone> findByAssetId(@NotNull Integer assetId);
}
已提交 patch/pull 请求并更正文档。
在 docs 中,它指出
The @JdbcRepository annotation accepts an optional string value which represents the name of the connection or datasource in a multiple datasource scenario. By default Micronaut Data will look for the default datasource.
但是,我在此注释中看不到任何此类值参数 - 只有方言。 这是一个错误还是我遗漏了什么?
Is this an error or am I missing something?
我认为是前者。如果您在 https://github.com/micronaut-projects/micronaut-data/issues 提交问题,我们可以解决。
感谢反馈!
这是一个完整的片段,使用方言和数据源:
@Repository(value = "inventoryDataSource")
@JdbcRepository(dialect = Dialect.ORACLE)
public interface PhoneRepository extends CrudRepository<Phone, Integer> {
Optional<Phone> findByAssetId(@NotNull Integer assetId);
}
已提交 patch/pull 请求并更正文档。