Spring JdbcTemplate 改变会话
Spring JdbcTemplate alter session
我想为从连接池获得的每个连接更改 Oracle 会话。
我发现只要执行一条语句就可以搞定。参见 here。
有没有办法挂接到 jdbc 模板或数据源并在连接池创建新连接后执行语句。
我正在使用 Spring 引导并以这种方式创建数据源:
@Bean
@ConfigurationProperties(prefix="datasource.local")
public DataSource localDataSource() {
return DataSourceBuilder.create().build();
}
有很多方法可以做到这一点。
第一个:
DataSource是一个接口,为什么不自己实现(使用Proxy模式)呢?创建这样的东西:
class MyDataSource implements DataSource {
private DataSource realDataSource;
public Connection getConnection() {
Connection c = realDataSource.getConnection();
// do whatever you want to do and
return c;
}
}
所有其他方法将直接委托给 realDataSource。
此代理可在提供的代码段中使用。
您可以使用一些 AOP - 只需提供一个建议,在创建 get 连接后将 运行 并在那里执行您需要的任何操作。基本上它是相同的代理,但由 Spring.
自动创建
我想为从连接池获得的每个连接更改 Oracle 会话。
我发现只要执行一条语句就可以搞定。参见 here。
有没有办法挂接到 jdbc 模板或数据源并在连接池创建新连接后执行语句。
我正在使用 Spring 引导并以这种方式创建数据源:
@Bean
@ConfigurationProperties(prefix="datasource.local")
public DataSource localDataSource() {
return DataSourceBuilder.create().build();
}
有很多方法可以做到这一点。 第一个:
DataSource是一个接口,为什么不自己实现(使用Proxy模式)呢?创建这样的东西:
class MyDataSource implements DataSource { private DataSource realDataSource; public Connection getConnection() { Connection c = realDataSource.getConnection(); // do whatever you want to do and return c; } }
所有其他方法将直接委托给 realDataSource。
此代理可在提供的代码段中使用。
您可以使用一些 AOP - 只需提供一个建议,在创建 get 连接后将 运行 并在那里执行您需要的任何操作。基本上它是相同的代理,但由 Spring.
自动创建