All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ajaxjs.mvc.view.UserLogined Maven / Gradle / Ivy

Go to download

AJAXJS Web aims to full-stack, not only the server-side framework, but also integrates the front-end library. It'€™s written in HTML5 + Java, a successor to the JVM platform, efficient, secure, stable, cross-platform and many other advantages, but it abandoned the traditional enterprise architecture brought about by the large and bloated, emphasizing the lightweight, and fast, very suitable for the Internet fast application.

There is a newer version: 1.3.0
Show newest version
package com.ajaxjs.mvc.view;

import java.io.IOException;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.jsp.JspException;

/**
 * 會員已经登录时
 * 
 * @author Frank Cheung
 *
 */
public class UserLogined extends AbstractUserLogin {
	@Override
	public void doTag() throws JspException, IOException {
		HttpServletRequest request = getRequest(getJspContext());

		if (isLogined(request))
			getJspBody().invoke(null);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy