香蕉你个不喃呐yb 2021-09-20 17:43 采纳率: 66.7%
浏览 15
已结题

spring注解 自动装配


package com.javasm.aspect;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;

import javax.annotation.Resource;
import java.sql.Connection;

/**
 * @author: zyb
 * @className: CurrentThread
 * @description:
 * @date: 2021/9/20   16:44
 * @since: 1.8
 */
@Component
public class CurrentThread {
    private static ThreadLocal<Connection> threadLocal = new ThreadLocal<>();

    @Autowired
    private static Druids ds;

    public static void setThreadLocal(Connection conn) {
        threadLocal.set(conn);
    }

    public static Connection getThreadLocal() {
        Connection connection = threadLocal.get();
        if (connection != null) {
            return connection;
        }
        return ds.getConn();
        /*return null;*/
    }

    public static void removeThreadLocal() {
        threadLocal.remove();
    }
}

使用@Autowired时 ds对象为空控制台报错
java.lang.NullPointerException

package com.javasm.aspect;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;

import javax.annotation.Resource;
import java.sql.Connection;


@Component
public class CurrentThread {
    private static ThreadLocal<Connection> threadLocal = new ThreadLocal<>();

    @Resource
    private static Druids ds;

    public static void setThreadLocal(Connection conn) {
        threadLocal.set(conn);
    }

    public static Connection getThreadLocal() {
        Connection connection = threadLocal.get();
        if (connection != null) {
            return connection;
        }
        return ds.getConn();
        /*return null;*/
    }

    public static void removeThreadLocal() {
        threadLocal.remove();
    }
}


@Autowired换成@Resource后控制台报下面的错误
Error creating bean with name 'currentThread' defined in file [E:\idea_workSpace\0919_spring\out\production\0919_spring\com\javasm\aspect\CurrentThread.class]: Post-processing of merged bean definition failed; nested exception is java.lang.IllegalStateException: @Resource annotation is not supported on static fields

这是什么问题?

  • 写回答

1条回答 默认 最新

  • 编号灬9527 2021-09-20 19:00
    关注

    使用set方法注入静态变量

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

问题事件

  • 系统已结题 9月28日
  • 已采纳回答 9月20日
  • 创建了问题 9月20日

悬赏问题

  • ¥15 (标签-STM32|关键词-智能小车)
  • ¥20 关于#stm32#的问题,请各位专家解答!
  • ¥15 (标签-python)
  • ¥15 第一个已完成,求第二个做法
  • ¥20 搭建awx,试了很多版本都有错
  • ¥15 java corba的客户端该如何指定使用本地某个固定IP去连接服务端?
  • ¥15 activiti工作流问题,求解答
  • ¥15 有人写过RPA后台管理系统么?
  • ¥15 Bioage计算生物学年龄
  • ¥20 如何将FPGA Alveo U50恢复原来出厂设置哇?