FoolishChow

Results 7 comments of FoolishChow

## 我们的场景是 在参与者中使用了多数据源 #### 场景 我们自定义了读写分离的`DataSource`,继承了`org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource`, #### 问题 `AbstractRoutingDataSource`这个类实现了`javax.sql.DataSource`,而他的`getConnection()`的实现方法中调用了连接池的`DataSource`中的`getConnection()`方法,如下 ```java package org.springframework.jdbc.datasource.lookup; public abstract class AbstractRoutingDataSource extends AbstractDataSource implements InitializingBean { @Override public Connection getConnection() throws SQLException { return determineTargetDataSource().getConnection();...

this is a bug , there should be an method to tell table expandAll

sorry for late response ! Being stuck in daily working for recently days ! I will see it this weekend or next !

你看下我的代码,remote属性是不是正确设置了 ```javascript //这是我们的jsx //remote指向的加载 private loadChild(row: Entity, callBack: (data: Entity[]) => void) { let child: Entity[] = row.children let d = child.map(i => { i.parent_id = row.id; i.depth = (row.depth...

typescript 的 decorator 还不支持类型推导,在配合 vuex使用的时候无法通过[vuex-class](https://www.npmjs.com/package/vuex-class)获得类型推导,你可以尝试下[vue-typescript-util](https://www.npmjs.com/package/vue-typescript-util)在不使用decorator的模式下获得vuex几乎全类型推导