1

我一直在尝试借助这个小教程使用多个操作开发 Portlet来调用 portlet 的方法“signinAction” 。但是当我尝试这样做时,我得到Portlet 暂时不可用错误。我在 Tomcat 的服务器控制台中看不到任何东西。此外,当我使用 processAction() 时,我没有收到错误消息。我不知道出了什么问题。

JSP:

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1" isELIgnored="false"%>
<%@ taglib uri="http://java.sun.com/portlet_2_0" prefix="portlet" %>

<portlet:actionURL var="signinAction" name="signinAction">
</portlet:actionURL>



<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Login</title>


</head>
<body onload="load()" id="body1">
<form action="<%=signinAction.toString() %>" name="signinForm" method="post" onsubmit="return signin(this)">

<center>

<div class="div-upside-down" id="div-style">    

<table  width="95%">
<tr>
    <td colspan="3"><p class="pp"></p>
    </td>
</tr>
<tr>
    <td id="td1">
        <input type="text"  id="email" name="email"  placeholder="Email" />
        <p id="one"></p>
    </td>

    <td id="td2">
        <input type="password"  id="password" name="password"  placeholder="Password" />
        <p id="one"></p>
    </td>

    <td id="td3">
        <input type= "submit" name= "submit" value="Login"/>
        <p id="one"></p>
    </td>
</tr>
</table>
</div>
</center>
</form>
</html>

小门户:

public class HelloWorldPortlet extends GenericPortlet {

ThemeDisplay td;


 public void signinAction(ActionRequest actionRequest, ActionResponse actionResponse) throws PortletException, IOException{
       long companyId=10154;
       String email = actionRequest.getParameter("email");
       String password = actionRequest.getParameter("password");

       try
        {
        int authResult = 0;
        long userId = 0;
        Company company = PortalUtil.getCompany(actionRequest);
        Map headerMap = new HashMap();


        Map parameterMap = actionRequest.getParameterMap();



        authResult = UserLocalServiceUtil.authenticateByEmailAddress(company.getCompanyId(), email, password,headerMap, parameterMap, null);
        userId = UserLocalServiceUtil.getUserIdByEmailAddress(company.getCompanyId(), email);
        User user = UserLocalServiceUtil.getUserByEmailAddress(companyId, email);
        String screenId = user.getScreenName();
        td = (ThemeDisplay) actionRequest.getAttribute(WebKeys.THEME_DISPLAY);  

        MethodKey key = new MethodKey("com.liferay.portlet.login.util.LoginUtil", "login", HttpServletRequest.class, HttpServletResponse.class, String.class, String.class, boolean.class, String.class);
        PortalClassInvoker.invoke(false, key, new Object[] { PortalUtil.getHttpServletRequest(actionRequest), PortalUtil.getHttpServletResponse(actionResponse),screenId, password, true, CompanyConstants.AUTH_TYPE_SN});
        actionResponse.sendRedirect(td.getPathMain());

        }
        catch (Exception e)
        {
        e.printStackTrace();
        }
        }
}

请帮忙。

4

1 回答 1

5

你遇到的一些问题。首先,您的实际问题:

看来您的 portlet 是从 javax.portlet.GenericPortlet 继承的。这意味着您必须添加@ProcessAction(name="signinAction")到方法的签名中。如果你不想要这个注解,你需要从 Liferay 的 MVCPortlet 继承,它通过反射找到你似乎期望的方法

您提供的代码的第二个问题:您的 jsp 包含页面级 HTML,例如<html><head><body>portlet 不得包含此内容,因为它将作为页面的一部分呈现,并且门户有责任将这些项目添加到页面(无论您显示多少个 portlet,它们只会被添加一次)

第三:根据经验,portlet 不应该有成员变量——事实上,将 ThemeDisplay 作为 portlet 类成员会在以后导致随机失败:通常只有一个 portlet 对象处理应用程序获得的所有请求。您必须使 ThemeDisplay 成为局部变量而不是成员,以避免并发问题和随机用户数据泄漏到其他用户的请求处理中

于 2013-04-21T10:52:50.953 回答