Lxxx

Results 2 comments of Lxxx

什么时候做复制IP功能

因为8.5.78里的getResourses被废弃了,所以调用getResources直接返回null,可以对获取resources的方式做以下修改: ``` Field resources = webappClassLoaderBase.getClass().getSuperclass().getDeclaredField("resources"); resources.setAccessible(true); StandardRoot standardRoot = (StandardRoot) resources.get(webappClassLoaderBase); org.apache.catalina.core.ApplicationContext applicationContext= (org.apache.catalina.core.ApplicationContext) contextField.get(standardRoot.getContext()) ``` 同样也是8.5.78版本 实测可行: