Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

Commit

Permalink
Merge pull request #210 from qixiaobo/master
Browse files Browse the repository at this point in the history
fix(support springboot1): override method to avoid no default method
  • Loading branch information
lvjing2 authored Nov 10, 2023
2 parents 6401a8d + 6403e0d commit 8fa52a7
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -134,4 +134,10 @@ public Object postProcessBeforeInitialization(Object bean, String beanName) thro

return bean;
}

@Override
public Object postProcessAfterInitialization(Object bean, String beanName)
throws BeansException {
return bean;
}
}

0 comments on commit 8fa52a7

Please sign in to comment.