gpt4 book ai didi

Spring Boot JNDI 资源引用

转载 作者:行者123 更新时间:2023-12-03 06:59:51 24 4
gpt4 key购买 nike

我需要在 Spring Boot 应用程序中声明一个资源引用,该资源引用将部署为 war 文件。这是访问数据库所必需的。在传统的 web 应用程序中,它被添加到 web.xml 中。我怎样才能以 Spring Boot 的方式实现这一点?

谢谢,本杰明

最佳答案

我们不久前就解决了这个问题,所以我想,我应该将其发布在这里。

<小时/>

src/main/webapp/WEB-INF/web.xml

<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
version="2.5">
<resource-ref>
<res-ref-name>jdbc/DefaultDB</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
</resource-ref>
</web-app>
<小时/>

src/main/resources/application.yml

spring:
datasource:
jndi-name: jdbc/DefaultDB
<小时/>

src/main/java//DataSourceConfiguration.java

@Configuration
public class DataSourceConfiguration {

@Bean
@ConditionalOnMissingBean // optional
public DataSource jndiDataSource(DataSourceProperties properties) {
InitialContext context = new InitialContext();
return (DataSource) context.lookup("unmanageddatasource:" + properties.getJndiName());
}
}

关于Spring Boot JNDI 资源引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36202920/

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