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

com.github.hippoom.wechat.mp.autoconfigure.web.WeChatMpWebMethodConfiguration Maven / Gradle / Ivy

The newest version!
package com.github.hippoom.wechat.mp.autoconfigure.web;

import com.github.hippoom.wechat.mp.web.method.support.OpenIdHandlerMethodArgumentResolver;
import java.util.List;
import lombok.RequiredArgsConstructor;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.method.support.HandlerMethodArgumentResolver;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;

@Configuration
@RequiredArgsConstructor
public class WeChatMpWebMethodConfiguration extends WebMvcConfigurerAdapter {


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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy