Is it an abstract class?; Nested exception is Java.lang.InstantiationE ... Reprint

Source: Internet
Author: User

It's not literally hard to understand, it's because of abstract classes.

Abstract classes cannot be referenced directly, so a instantiationexception exception has been created.

So what exactly is the problem?

<bean id= "Abstractjob" class= "Cn.ncs.test.job.AbstractJob" >

Above this is like Abstractjob abstractjob=new abstractjob ();

Assuming Abstractjob is an abstract class, where can it be executed?

By default <bean> has a value called abstract he defaults to False

When we do spring pojo, we need to be aware of this, and the mapping of abstract classes is absolutely to set the abstract to true:

<bean id= "Abstractjob" class= "Cn.ncs.test.job.AbstractJob" abstract= "true" >

And the reference must not be used for injection, only for its subclasses to do inheritance, as follows:

<bean id= "Zerojob" class= "Cn.ncs.test.job.ZeroJob" parent= "Abstractjob" >

ok! understand, finish the call.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.