当前位置: 首页>>代码示例>>Java>>正文


Java ViewType类代码示例

本文整理汇总了Java中com.jfinal.render.ViewType的典型用法代码示例。如果您正苦于以下问题:Java ViewType类的具体用法?Java ViewType怎么用?Java ViewType使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


ViewType类属于com.jfinal.render包,在下文中一共展示了ViewType类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: configConstant

import com.jfinal.render.ViewType; //导入依赖的package包/类
/** 配置常量 */
@Override
public void configConstant(Constants me) {
    // 加载数据库配置,随后可用getProperty(...)获取值
    super.loadPropertyFile("config.properties");

    // 配置开发模式
    me.setDevMode(super.getPropertyToBoolean("xyweixin.devMode", false));

    // 设置视图类型为JSP,默认为FreeMarker
    me.setViewType(ViewType.JSP);
    // me.setEncoding("UTF-8");

    me.setMainRenderFactory(new BeetlRenderFactory());
    // 获取GroupTemplate ,可以设置共享变量等操作
    // GroupTemplate groupTemplate = BeetlRenderFactory.groupTemplate;

    // 配置文件上传的保存基路径
    me.setUploadedFileSaveDirectory(super.getProperty("xyweixin.fileUploadDir", "upload"));

    // me.setErrorView(401, "/au/login.html");
    // me.setErrorView(403, "/au/login.html");
    // me.setError404View("/404.html");
    // me.setError500View("/500.html");
}
 
开发者ID:baayso,项目名称:weixin-demo,代码行数:26,代码来源:JFinalConfigImpl.java

示例2: configConstant

import com.jfinal.render.ViewType; //导入依赖的package包/类
/**
 * 配置常量
 */
@Override
public void configConstant(Constants me) {
	druidConfig = loadPropertyFile("config/bruid.properties");
	// 加载少量必要配置,随后可用getProperty(...)获取值
	me.setDevMode(getPropertyToBoolean("devMode", false));
	me.setViewType(ViewType.JSP); // 设置视图类型为Jsp,否则默认为FreeMarker
	me.setEncoding("UTF-8");
	me.setBaseViewPath("/WEB-INF/pages");
	me.setError404View("/404.jsp");
	me.setError403View("/500.jsp");
	me.setError500View("/500.jsp");
	me.setError401View("/500.jsp");

	JspRender.setSupportActiveRecord(false);
}
 
开发者ID:yaokwok,项目名称:loveabc,代码行数:19,代码来源:MgConfig.java

示例3: configConstant

import com.jfinal.render.ViewType; //导入依赖的package包/类
/**
 * Config constant
 * 
 * Default <br/>
 * ViewType: JSP <br/>
 * Encoding: UTF-8 <br/>
 * ErrorPages: <br/>
 * 404 : /WEB-INF/errorpages/404.jsp <br/>
 * 500 : /WEB-INF/errorpages/500.jsp <br/>
 * 403 : /WEB-INF/errorpages/403.jsp <br/>
 * UploadedFileSaveDirectory : cfg basedir + appName <br/>
 */
public void configConstant(Constants me) {
	me.setViewType(ViewType.JSP);
	me.setDevMode(this.getAppDevMode());
	me.setEncoding(Const.DEFAULT_ENCODING);
	me.setError404View(PageViewKit.get404PageView());
	me.setError500View(PageViewKit.get500PageView());
	me.setError403View(PageViewKit.get403PageView());
	//file upload dir
	me.setBaseUploadPath(this.getUploadPath());
	//file download dir
	me.setBaseDownloadPath(this.getDownloadPath());
	
	JFinalConfigExt.APP_NAME = this.getAppName();
	//set file rename policy is random
	OreillyCos.setFileRenamePolicy(new RandomFileRenamePolicy());
	// config others
	configMoreConstants(me);
}
 
开发者ID:OpeningO,项目名称:JFinal-ext2,代码行数:31,代码来源:JFinalConfigExt.java

示例4: tryDoRender

import com.jfinal.render.ViewType; //导入依赖的package包/类
/**
 * 尝试通过Controller的放回值来进行数据的渲染
 *
 * @param ai
 * @param controller
 * @return true 表示已经渲染数据了,false 表示并未按照约定编写,及没有进行渲染
 */
private boolean tryDoRender(Invocation ai, Controller controller) {
    Object returnValue = ai.getReturnValue();
    boolean rendered = false;
    if (returnValue != null) {
        if (ai.getActionKey().startsWith("/api/admin")) {
            controller.renderJson(ai.getReturnValue());
            rendered = true;
        } else if (ai.getActionKey().startsWith("/admin") && returnValue instanceof String) {
            if (JFinal.me().getConstants().getViewType() == ViewType.JSP) {
                String templatePath = returnValue.toString() + ".jsp";
                if (new File(PathKit.getWebRootPath() + templatePath).exists()) {
                    controller.render(templatePath);
                    rendered = true;
                } else {
                    rendered = false;
                }
            }
        }
    } else {
        rendered = true;
    }
    return rendered;
}
 
开发者ID:94fzb,项目名称:zrlog,代码行数:31,代码来源:AdminInterceptor.java

示例5: configConstant

import com.jfinal.render.ViewType; //导入依赖的package包/类
@Override
public void configConstant(Constants me) {
    PropKit.use("config.txt");
    me.setViewType(ViewType.JSP);
    //根据gt可以添加扩展函数,格式化函数,共享变量等,
    me.setDevMode(true);
    me.setJsonFactory(new JacksonFactory());
}
 
开发者ID:readen,项目名称:Relay,代码行数:9,代码来源:AppConfig.java

示例6: configConstant

import com.jfinal.render.ViewType; //导入依赖的package包/类
@Override
public void configConstant(Constants constants) {
	// 设置freemarker模板
	constants.setViewType(ViewType.FREE_MARKER);	//默认的 可以不配置
	constants.setBaseViewPath("/WEB-INF/template");	//页面模板根路径
	constants.setFreeMarkerViewExtension("ftl");	//freemarker 模板后缀名
	
	// 设置开发模式
	loadPropertyFile("jdbc.properties");				// 加载系统属性配置文件,随后可用getProperty(...)获取值
	constants.setDevMode(Boolean.valueOf(getProperty("devMode")));
}
 
开发者ID:xuxueli,项目名称:xxl-incubator,代码行数:12,代码来源:CoreConfig.java

示例7: configConstant

import com.jfinal.render.ViewType; //导入依赖的package包/类
/**
 * 配置常量
 */
public void configConstant(Constants me) {
	me.setDevMode(isDevMode());
	me.setViewType(ViewType.JSP); // 设置视图类型为Jsp,否则默认为FreeMarker
	me.setLogFactory(new Log4jLogFactory());
	me.setError401View(Config.getStr("PAGES.401"));
	me.setError403View(Config.getStr("PAGES.403"));
	me.setError404View(Config.getStr("PAGES.404"));
	me.setError500View(Config.getStr("PAGES.500"));
}
 
开发者ID:jflyfox,项目名称:jflyfox_jfinal,代码行数:13,代码来源:JflyfoxConfig.java

示例8: configConstant

import com.jfinal.render.ViewType; //导入依赖的package包/类
public void configConstant(Constants constants) {
	PropKit.use("custom/ooo.properties");

	constants.setDevMode(true);// 开发模式
	// constants.setViewType(ViewType.JSP);
	constants.setViewType(ViewType.FREE_MARKER);
	constants.setEncoding(AppConsts.ENCODE_CHARSET_UTF8);
}
 
开发者ID:lusparioTT,项目名称:OooO,代码行数:9,代码来源:AppConfig.java

示例9: configConstant

import com.jfinal.render.ViewType; //导入依赖的package包/类
/**
    * 常量配置
    */
@Override
public void configConstant(Constants me) {
	me.setDevMode(true);//开启开发模式
	me.setEncoding("UTF-8");
       me.setViewType(ViewType.JSP);
}
 
开发者ID:kevin09002,项目名称:jfinal-api-scaffold,代码行数:10,代码来源:AppConfig.java

示例10: configConstant

import com.jfinal.render.ViewType; //导入依赖的package包/类
public void configConstant(Constants me) {
	loadProp("a_little_config_pro.txt", "a_little_config.txt");
	me.setDevMode(PropKit.getBoolean("devMode", false));
	me.setViewType(ViewType.JSP);
	
	// ApiConfigKit 设为开发模式可以在开发阶段输出请求交互的 xml 与 json 数据
	ApiConfigKit.setDevMode(me.getDevMode());
	//设置404跳转页面
	me.setError404View("/_front/common/404.html");
	me.setError500View("/_front/common/500.html");
}
 
开发者ID:touzi,项目名称:weChat,代码行数:12,代码来源:WeixinConfig.java

示例11: configConstant

import com.jfinal.render.ViewType; //导入依赖的package包/类
/**
 * 配置常量
 */
@Override
public void configConstant(Constants me) {
    loadPropertyFile("property_config.txt");
    DOMAIN = getProperty("domain");
    me.setDevMode(getPropertyToBoolean("devMode", true));
    me.setViewType(ViewType.JSP);
    me.setError404View("/error/404.jsp");
    me.setError500View("/error/500.jsp");
}
 
开发者ID:Wccczy,项目名称:Student_Register,代码行数:13,代码来源:WebConfig.java

示例12: visitorPermission

import com.jfinal.render.ViewType; //导入依赖的package包/类
/**
 * 查询出来的文章数据存放在request域里面,通过判断Key,选择对应需要渲染的模板文件
 *
 * @param ai
 */
private void visitorPermission(Invocation ai) {
    ai.invoke();
    String templateName = ai.getReturnValue();
    if (templateName == null) {
        return;
    }
    String ext = "";
    if (JFinal.me().getConstants().getViewType() == ViewType.JSP) {
        ext = ".jsp";
    }
    String basePath = TemplateHelper.fullTemplateInfo(ai.getController());
    if (ai.getController().getAttr("log") != null) {
        ai.getController().setAttr("pageLevel", 1);
    } else if (ai.getController().getAttr("data") != null) {
        if (ai.getActionKey().equals("/") && new File(PathKit.getWebRootPath() + basePath + "/" + templateName + ext).exists()) {
            ai.getController().setAttr("pageLevel", 2);
        } else {
            templateName = "page";
            ai.getController().setAttr("pageLevel", 1);
        }
    } else {
        ai.getController().setAttr("pageLevel", 2);
    }
    fullDevData(ai.getController());
    ai.getController().render(basePath + "/" + templateName + ext);
}
 
开发者ID:94fzb,项目名称:zrlog,代码行数:32,代码来源:VisitorInterceptor.java

示例13: exceptionHandler

import com.jfinal.render.ViewType; //导入依赖的package包/类
private void exceptionHandler(Invocation ai, Exception e) {
    if (ai.getActionKey().startsWith("/api")) {
        ExceptionResponse exceptionResponse = new ExceptionResponse();
        exceptionResponse.setError(1);
        if (JFinal.me().getConstants().getDevMode()) {
            exceptionResponse.setMessage(ExceptionUtils.recordStackTraceMsg(e));
        }
        ai.getController().renderJson(exceptionResponse);
    } else {
        if (JFinal.me().getConstants().getViewType() == ViewType.JSP) {
            ai.getController().render(Constants.ADMIN_ERROR_PAGE + ".jsp");
        }
    }
}
 
开发者ID:94fzb,项目名称:zrlog,代码行数:15,代码来源:AdminInterceptor.java

示例14: configConstant

import com.jfinal.render.ViewType; //导入依赖的package包/类
/**
 * 配置JFinal的常用参数,这里可以看出来JFinal推崇使用代码进行配置的,而不是像Spring这样的通过预定配置方式。代码控制的好处在于高度可控制性,
 * 当然这也导致了很多程序员直接硬编码的问题。
 *
 * @param con
 */
public void configConstant(Constants con) {
    con.setDevMode(BlogBuildInfoUtil.isDev());
    con.setViewType(ViewType.JSP);
    con.setEncoding("utf-8");
    con.setI18nDefaultBaseName(com.zrlog.common.Constants.I18N);
    con.setI18nDefaultLocale("zh_CN");
    con.setError404View("/error/404.html");
    con.setError500View("/error/500.html");
    con.setError403View("/error/403.html");
    con.setBaseUploadPath(PathKit.getWebRootPath() + com.zrlog.common.Constants.ATTACHED_FOLDER);
}
 
开发者ID:94fzb,项目名称:zrlog,代码行数:18,代码来源:ZrlogConfig.java

示例15: configConstant

import com.jfinal.render.ViewType; //导入依赖的package包/类
@Override
public void configConstant(Constants me)
{
	this.loadPropertyFile("xfinal.conf", "UTF-8");
	me.setViewType(ViewType.FREE_MARKER);
}
 
开发者ID:glaciall,项目名称:jfinal-dbx,代码行数:7,代码来源:TestConfig.java


注:本文中的com.jfinal.render.ViewType类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。