# wvp-pro 扩展 ## 1 登录拦截器放行内部接口 com.genersoft.iot.vmp.conf.security.JwtAuthenticationFilter ``` // 扩展内部接口 if (requestURI.startsWith("/internal/")) { chain.doFilter(request, response); return; } ``` com.genersoft.iot.vmp.conf.security.WebSecurityConfig ``` // 扩展内部接口放行 matchers.add("/internal/**"); ``` ## 2 项目升级mybatis-plus 需要修改 com.genersoft.iot.vmp.conf.MybatisConfig 最后代码注释掉