SimplePortletPostProcessor.java 文件源码

java
阅读 22 收藏 0 点赞 0 评论 0

项目:class-guard 作者:
public Object postProcessAfterInitialization(Object bean, String beanName) throws BeansException {
    if (bean instanceof Portlet) {
        PortletConfig config = this.portletConfig;
        if (config == null || !this.useSharedPortletConfig) {
            config = new DelegatingPortletConfig(beanName, this.portletContext, this.portletConfig);
        }
        try {
            ((Portlet) bean).init(config);
        }
        catch (PortletException ex) {
            throw new BeanInitializationException("Portlet.init threw exception", ex);
        }
    }
    return bean;
}
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号