We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
修改WEB不要密码就能访问的功能 cd ~/App/zkui/src/main/java/com/deem/zkui/filter/ cp AuthFilter.java AuthFilter.java.bak vi AuthFilter.java 把 public void doFilter 这个函数改成 @OverRide public void doFilter(ServletRequest req, ServletResponse res, FilterChain fc) throws IOException, ServletException { HttpServletRequest request = (HttpServletRequest) req; HttpServletResponse response = (HttpServletResponse) res;
fc.doFilter(req, res); }
保存退出
pkill -9 -f "zkui-2.0-SNAPSHOT-jar-with-dependencies.jar" cd ~/App/zkui/ mvn clean install
The text was updated successfully, but these errors were encountered:
No branches or pull requests
修改WEB不要密码就能访问的功能
cd ~/App/zkui/src/main/java/com/deem/zkui/filter/
cp AuthFilter.java AuthFilter.java.bak
vi AuthFilter.java
把
public void doFilter
这个函数改成
@OverRide
public void doFilter(ServletRequest req, ServletResponse res, FilterChain fc) throws IOException, ServletException {
HttpServletRequest request = (HttpServletRequest) req;
HttpServletResponse response = (HttpServletResponse) res;
保存退出
pkill -9 -f "zkui-2.0-SNAPSHOT-jar-with-dependencies.jar"
cd ~/App/zkui/
mvn clean install
The text was updated successfully, but these errors were encountered: