Spring NullPointerException с объектом @Autowired с @EnableAspectJAutoProxy - PullRequest
0 голосов
/ 09 мая 2019

Я новичок в Spring Framework и получаю исключение NullPointerException, когда я пытаюсь использовать введенную зависимость. Вот мой код:

DemoConfig:

@Configuration
@EnableAspectJAutoProxy
@ComponentScan("com.trial.classes")
public class DemoConfig {

}

AccountDAO:

@Component
public class AccountDAO {

    @Autowired
    TestClass test;    // the problem: the object is null!


}

TestClass:

@Component
public class TestClass {
    public void testMethod()
    {
        System.out.println("this is a test method");
    }

}

Main:

public static void main(String[] args) {


        AnnotationConfigApplicationContext context =
                new AnnotationConfigApplicationContext(DemoConfig.class);


    AccountDAO theAccountDAO = context.getBean("accountDAO", AccountDAO.class);

    theAccountDAO.test.testMethod();    //NullPointerException



        context.close();
    }
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...