91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》
  • 首頁 > 
  • 教程 > 
  • 開發技術 > 
  • java SpringBoot如何實現自定義注解及自定義解析器對象自動注入的方法

java SpringBoot如何實現自定義注解及自定義解析器對象自動注入的方法

發布時間:2020-08-20 09:34:34 來源:億速云 閱讀:3475 作者:小新 欄目:開發技術

這篇文章主要介紹java SpringBoot如何實現自定義注解及自定義解析器對象自動注入的方法,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

# java-SpringBoot自定義參數解析器實現對象自動注入

解析器邏輯流程圖表

java SpringBoot如何實現自定義注解及自定義解析器對象自動注入的方法

后臺解析注解的解析器

首先,我在java后臺編寫了一個解析器,代碼如下

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方法會進入到解析器中
 * 通過解析器查詢到當前用戶,并返回給controller *
 * @author yangz
 */
@Service
public class LoginUserHandlerMethodArgumentResolver implements HandlerMethodArgumentResolver {

 //用戶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作用域中獲取登錄時存入的用戶ID,不明白的可以查看我的博客springBoot攔截器一文
    Object object = request.getAttribute(AuthorizationInterceptor.LOGIN_USER_KEY, RequestAttributes.SCOPE_REQUEST);
    if (object == null) {
      return null;
    }

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

其次,我編寫一個攔截器配置類,將攔截器注入到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 {


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

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

最后是我們的開關,也就是自定義的注解LoginUser注解,當在controller方法中參數有使用此注解,就會觸發我們的解析器進行對象注入,那么我就得自己定義一個屬于自己的注解

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

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

}

然后就是一小個演示使用的方法

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

補充知識:Springboot基于自定義注解的自動裝配

1.定義java bean

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

2.創建configuration類

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.調用

@SpringBootApplication
@EnableAutoImport  //打上你自定義的注解
public class DemoApplication implements InitializingBean {
//這里實現了InitializingBean 在初始化bean的時候都會執行afterPropertiesSet
  @Autowired
  private User user;  //注入 user類

  public static void main(String[] args) {

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

  @Override
  public void afterPropertiesSet() throws Exception {
   //在這里調用了裝配進來的類
    System.out.println(user.getUserName());
  }
}

以上是java SpringBoot如何實現自定義注解及自定義解析器對象自動注入的方法的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

屏东县| 合肥市| 崇礼县| 平塘县| 杭锦后旗| 鄱阳县| 蒙阴县| 方山县| 巴林左旗| 台中县| 武山县| 饶平县| 玉环县| 南充市| 鄂伦春自治旗| 大渡口区| 呼伦贝尔市| 日喀则市| 洮南市| 汉中市| 保德县| 四川省| 兴业县| 芦山县| 宣化县| 朝阳区| 淮阳县| 孝昌县| 临沂市| 汝州市| 四会市| 郓城县| 德兴市| 沛县| 高阳县| 平谷区| 蒙城县| 赤壁市| 安泽县| 望谟县| 喜德县|