cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

How to extend AbstractCheckoutStepController methods using @Override

0 Likes
494

Hi,

I need your help to know how to extend the AbstractCheckoutStepController.java class to modifiy two methods. I am using custom folder so that I do not handle core java classes.

I realized that I need to create another java class that extends AbstractCheckoutStepController.java and another interface.

Please your help to implement this solution using custom folders.

Thank you!

Accepted Solutions (0)

Answers (1)

Answers (1)

0 Likes

Create a custom class as follows: public abstract class AbstractCustomCheckoutStepController extends AbstractCheckoutStepController and use overirde method to write custom logic.

0 Likes

Thank you for answer.

Could you please give me more information about that?. Do I have to create a bean configuration?. What are all the steps to follow.

I have create the new class that extends AbstractCheckoutStepController.

rohit31_raj92
Active Participant
0 Likes

No you don't need to define any spring entry for it, you can simply extend it and over ride that.