php i bir kullanıcı ok ayarlarsanız, bir üye kimliği için oturum kontrol tarafından veya giriş olup olmadığını doğrulamak için kullanılan, başka bir sayfa açma sayfasına Soket üzerinden yönlendirildi. Bu auth komut auth.php oldu ve ben girişi gerekli her sayfası dahil etmek için kullanılır. basit. Ancak ben jsp aynı yapamaz. auth.jsp içeren sayfanın geri kalanı olursa olsun auth.jsp ne yüklenmiş olur çünkü. auth.jsp olduğunu
<%
UserService userService = UserServiceFactory.getUserService();
User user = userService.getCurrentUser();
if (user == null) {
%>
<jsp:forward page="/index"/>
<%
return;
}
%>
if the user is not logged in he still can see the original page below the login page. because of this i have to manually include the user checking using if else on every page, very inconvenient. any solutions?? the including page is
<jsp:include page="auth.jsp" />
<p>Welcome</p>