Quarkus的自定义配置源

问题描述 投票:0回答:2

我现在尝试在Quarkus应用程序中配置自定义ConfigSource。像许多其他手册一样,我创建了自己的DatabaseSourceConfig并实现了[[org.eclipse.microprofile.config.spi.ConfigSource接口。我在以下位置注册了ConfigSource:/META-INF/services/org.eclipse.microprofile.config.spi.ConfigSource

有我的ConfigSource:

public class DatabaseConfigSource implements ConfigSource { private DataSource dataSource; public DatabaseConfigSource() { try { dataSource = (DataSource) new InitialContext().lookup("openejb:Resource/config-source-database"); } catch (final NamingException e) { throw new IllegalStateException(e); } } @Override public Map<String, String> getProperties() { // Implementing Method } @Override public String getValue(final String propertyName) { // Implementing Method } @Override public String getName() { return DatabaseConfigSource.class.getSimpleName(); }

}

但是由于JNDI名称,这不适用于Quarkus。我需要使用CDI。我正在尝试使用类似这样的东西:

@Inject @io.quarkus.agroal.DataSource("my_connection") AgroalDataSource usersDataSource;

并在application.properties中声明此连接,但这对我没有帮助。我一直在获取NULL异常。也许有人有想法,如何不使用JNDI命名空间就可以在那里建立数据库连接?

我现在尝试在Quarkus应用程序中配置自定义ConfigSource。像其他许多手册一样,我创建了自己的DatabaseSourceConfig并实现了org.eclipse.microprofile.config.spi.ConfigSource ...

java datasource cdi quarkus microprofile
2个回答
0
投票
您可以通过]获得数据源>

AgroalDataSource dataSource = Arc.container() .instance(AgroalDataSource.class, new DataSource.DataSourceLiteral("my_connection")) .get();


0
投票
我自己找到了一些答案,也许对其他人也有用。就像@Janmartiška所说,CDI的启动时间比ConfigSource晚,这就是为什么我看不到任何通过CDI注入连接的方法的原因。我创建了一些HibernateUtil类:
© www.soinside.com 2019 - 2024. All rights reserved.