<!--shiro-->    <dependency>        <groupId>org.apache.shiro</groupId>        <artifactId>shiro-spring-boot-starter</artifactId>        <version>1.4.0</version>    </dependency>

ShiroConfig类

@Bean("shiroFilter")    public ShiroFilterFactoryBean shiroFilter(SecurityManager securityManager) {filterChainDefinitionMap.put("/ocrFile/upload", "anon"); //登录接口排除

调用

    @RequestMapping("uploadFile")    public String uploadFile(@RequestBody String requestString, HttpServletRequest request, HttpServletResponse response) throws Exception {