作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用命令行运行程序和 Web 应用程序进行 Spring Boot。两个应用都需要用oracle钱包实现,所以我实现了oracle钱包。命令行运行程序能够使用使用 oracle 数据源的 spring jdbc 模板连接到数据库,但相同的配置无法为数据源对象创建 bean。当使用数据库用户名和密码实现相同时,我就可以连接了。
我正在从这篇文章中获得帮助 - [ Connect to Oracle DB from Spring-jdbc with Oracle Wallet authentification
代码类似于,
System.setProperty("oracle.net.tns_admin", "path/to/your/tnsnames");
OracleDataSource ds = new OracleDataSource();
Properties props = new Properties();
props.put("oracle.net.wallet_location", "(source=(method=file)(method_data=(directory=path/to/your/wallet)))");
ds.setConnectionProperties( props );
ds.setURL("jdbc:oracle:thin:/@dbAlias"); //dbAlias should match what's in your tnsnames
return ds;
最佳答案
经过尝试,我可以弄清楚当我们需要在 spring boot 中包含 oracle 钱包时我们需要做什么。
1. In application.properties put two properties,
A> spring.datasource.url=jdbc:oracle:thin:/@<DB_ALIAS_NAME>
B> spring.datasource.driver-class-name=oracle.jdbc.driver.OracleDriver
2. On boot runner/configuration class,
A> Define the dataSource bean like this,
@Bean
public DataSource dataSource() {
OracleDataSource dataSource = null;
try {
dataSource = new OracleDataSource();
Properties props = new Properties();
String oracle_net_wallet_location =
System.getProperty("oracle.net.wallet_location");
props.put("oracle.net.wallet_location", "(source=(method=file)(method_data=(directory="+oracle_net_wallet_location+")))");
dataSource.setConnectionProperties(props);
dataSource.setURL(url);
} catch(Exception e) {
e.printStackTrace();
}
return dataSource;
}
B> Define the jdbcTemplate bean as follows,
@Bean
public JdbcTemplate jdbcTemplate(DataSource dataSource) {
JdbcTemplate jdbcTemplate = new JdbcTemplate(dataSource());
jdbcTemplate.setFetchSize(20000);
return jdbcTemplate;
}
3. Now we need to set jvm arguments in boot runner class like as follows,
-Doracle.net.wallet_location=<PATH_TO_WALLET_DIR> -Doracle.net.tns_admin=<PATH_TO_WALLET_DIR>
Note - <WALLET_DIR> should contain .sso, .p12 and .ora files. On external
server like tomcat, set above two variables on catalina.sh or catalina.bat
depending on your environment OS.
I hope this helps.
Thanks,
Sandip
关于spring-boot - Spring Boot Web 应用程序不适用于 oracle 钱包,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43993338/
我是一名优秀的程序员,十分优秀!