All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ruijc.shiro.ShiroWebMvcConfigurerAdapter Maven / Gradle / Ivy

package com.ruijc.shiro;

import com.ruijc.shiro.annotation.SessionUserArgumentResolver;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.method.support.HandlerMethodArgumentResolver;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;

import java.util.List;

/**
 * Shiro Web环境配置
 *
 * @author Storezhang
 */
@Configuration
public class ShiroWebMvcConfigurerAdapter extends WebMvcConfigurerAdapter {

    @Override
    public void addArgumentResolvers(List argumentResolvers) {
        argumentResolvers.add(new SessionUserArgumentResolver());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy