我下载了论坛的源码(还有nutzbook),然后再我电脑上的myeclipse里面,代码提示错误:
public void filter(InterceptorChain chain) throws Throwable {
if (TL.get() != null) {
chain.doChain();
return;
}
try (Jedis jedis = jedisPool.getResource()) { //这里有错误 ,Syntax error on token "(", { expected
TL.set(jedis);
chain.doChain();
} finally{
TL.remove();
}
}
求助