首页 > 其他 > 详细

ContextLoader

时间:2019-08-24 12:26:07      阅读:116      评论:0      收藏:0      [点我收藏+]
//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by Fernflower decompiler)
//

package com.neusoft.unieap.core.listener;

import com.neusoft.unieap.core.protection.ProtectionConfig;
import com.neusoft.unieap.core.protection.custom.CustomCheck;
import com.neusoft.unieap.core.validation.i18n.I18nGlobalContext;
import java.io.File;
import javax.servlet.ServletContext;
import org.springframework.web.context.ConfigurableWebApplicationContext;

public class ContextLoader extends org.springframework.web.context.ContextLoader {
    public ContextLoader() {
    }

    protected void customizeContext(ServletContext servletContext, ConfigurableWebApplicationContext applicationContext) {
        String licensePath = File.separator + "WEB-INF" + File.separator + "conf" + File.separator + "unieap" + File.separator + "license";
        System.out.println("我是licensePath============="+licensePath);
        I18nGlobalContext.getInstance().setServletContext(servletContext);
        ProtectionConfig.filePath = applicationContext.getServletContext().getRealPath(licensePath);
        System.out.println("ProtectionConfig.filePath============="+ProtectionConfig.filePath);
        CustomCheck.getInstance().check(false);
    }
}

 

ContextLoader

原文:https://www.cnblogs.com/Jeely/p/11403877.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!