溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

java SpringBoot如何實(shí)現(xiàn)自定義注解及自定義解析器對(duì)象自動(dòng)注入的方法

發(fā)布時(shí)間:2020-08-20 09:34:34 來(lái)源:億速云 閱讀:3472 作者:小新 欄目:開(kāi)發(fā)技術(shù)

這篇文章主要介紹java SpringBoot如何實(shí)現(xiàn)自定義注解及自定義解析器對(duì)象自動(dòng)注入的方法,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

# java-SpringBoot自定義參數(shù)解析器實(shí)現(xiàn)對(duì)象自動(dòng)注入

解析器邏輯流程圖表

java SpringBoot如何實(shí)現(xiàn)自定義注解及自定義解析器對(duì)象自動(dòng)注入的方法

后臺(tái)解析注解的解析器

首先,我在java后臺(tái)編寫(xiě)了一個(gè)解析器,代碼如下

import com.ruoyi.framework.interceptor.annotation.LoginUser;
import com.ruoyi.project.WebMoudle.WebUser.domain.WebUser;
import com.ruoyi.project.WebMoudle.WebUser.service.IWebUserService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.core.MethodParameter;
import org.springframework.stereotype.Service;
import org.springframework.web.bind.support.WebDataBinderFactory;
import org.springframework.web.context.request.NativeWebRequest;
import org.springframework.web.context.request.RequestAttributes;
import org.springframework.web.method.support.HandlerMethodArgumentResolver;
import org.springframework.web.method.support.ModelAndViewContainer;

/**
 * 有@LoginUser注解的controller方法會(huì)進(jìn)入到解析器中
 * 通過(guò)解析器查詢(xún)到當(dāng)前用戶(hù),并返回給controller *
 * @author yangz
 */
@Service
public class LoginUserHandlerMethodArgumentResolver implements HandlerMethodArgumentResolver {

 //用戶(hù)service
  @Autowired
  private IWebUserService webUserService;

  @Override
  public boolean supportsParameter(MethodParameter parameter) {
    return parameter.getParameterType().isAssignableFrom(WebUser.class) && parameter.hasParameterAnnotation(LoginUser.class);
  }

  @Override
  public Object resolveArgument(MethodParameter parameter, ModelAndViewContainer container,
                 NativeWebRequest request, WebDataBinderFactory factory) throws Exception {
    //從request作用域中獲取登錄時(shí)存入的用戶(hù)ID,不明白的可以查看我的博客springBoot攔截器一文
    Object object = request.getAttribute(AuthorizationInterceptor.LOGIN_USER_KEY, RequestAttributes.SCOPE_REQUEST);
    if (object == null) {
      return null;
    }

    //獲取用戶(hù)信息
    Long userId=(Long) object;
    WebUser user = webUserService.selectWebUserById(userId);
    return user;
  }
}

其次,我編寫(xiě)一個(gè)攔截器配置類(lèi),將攔截器注入到spring容器中

import com.ruoyi.framework.interceptor.LoginUserHandlerMethodArgumentResolver;
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;

@Configuration
public class LoginUserConfig extends WebMvcConfigurerAdapter {


    /**
   * 此處獲取攔截器實(shí)例化對(duì)象,同理攔截器
   * @return
   */
  @Bean
  public LoginUserHandlerMethodArgumentResolver getLoginUserHandlerMethodArgumentResolver(){
    return new LoginUserHandlerMethodArgumentResolver();
  }

  @Override
  public void addArgumentResolvers(List<HandlerMethodArgumentResolver> argumentResolvers){
    super.addArgumentResolvers(argumentResolvers);
    argumentResolvers.add(getLoginUserHandlerMethodArgumentResolver());
  }
}

最后是我們的開(kāi)關(guān),也就是自定義的注解LoginUser注解,當(dāng)在controller方法中參數(shù)有使用此注解,就會(huì)觸發(fā)我們的解析器進(jìn)行對(duì)象注入,那么我就得自己定義一個(gè)屬于自己的注解

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * 注入用戶(hù)信息注解,
 *比較簡(jiǎn)單,沒(méi)有聲明更多的屬性
 * @author lipengjun
 * @email 939961241@qq.com
 * @date 2017-03-23 20:39
 */
@Target(ElementType.PARAMETER)
@Retention(RetentionPolicy.RUNTIME)
public @interface LoginUser {

}

然后就是一小個(gè)演示使用的方法

  @RequestMapping(value = "/prepay")
  @ResponseBody
  public Map<String,Object> prepay(@LoginUser WebUser webUser){
   //此間,從request中獲取到userId信息就會(huì)在進(jìn)入controller之前將webuser對(duì)象查出并注入到webUser參數(shù)中
  }

補(bǔ)充知識(shí):Springboot基于自定義注解的自動(dòng)裝配

1.定義java bean

@Data //lombok注解
public class User {
  private Integer userId;
  private String userName;
}

2.創(chuàng)建configuration類(lèi)

public class UserConfig {
  @Bean
  public User getUser(){
    User user = new User();
    user.setUserId(1);
    user.setUserName("你好啊 哈哈哈哈");
    return user;
  }
}

3.定義注解

@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
@AutoConfigurationPackage
@Import(UserConfig.class)
public @interface EnableAutoImport {
}

4.調(diào)用

@SpringBootApplication
@EnableAutoImport  //打上你自定義的注解
public class DemoApplication implements InitializingBean {
//這里實(shí)現(xiàn)了InitializingBean 在初始化bean的時(shí)候都會(huì)執(zhí)行afterPropertiesSet
  @Autowired
  private User user;  //注入 user類(lèi)

  public static void main(String[] args) {

    SpringApplication.run(DemoApplication.class, args);
  }

  @Override
  public void afterPropertiesSet() throws Exception {
   //在這里調(diào)用了裝配進(jìn)來(lái)的類(lèi)
    System.out.println(user.getUserName());
  }
}

以上是java SpringBoot如何實(shí)現(xiàn)自定義注解及自定義解析器對(duì)象自動(dòng)注入的方法的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI