JFinal contextPath路径处理

添加Handler: me.add(new ContextPathHandler("ctx")),然后在页面中就可以 ${ctx} 来用

代码如下:找不到代码写在哪里的,请在整个工程中搜索 configHandler

config:

	/**
	 * 配置处理器
	 */
	public void configHandler(Handlers me) {
		me.add(new ContextPathHandler("ctx"));		
	}

Jsp中直接引用就可以了:

<link href="${ctx}/css/login.css" rel="stylesheet" type="text/css" />




你可能感兴趣的:(jsp,jFinal,contextPath,路径处理)