我已经通过在 D:\Liferay\Liferay Tomcat\liferay-portal-6.1.0-ce-b4\tomcat-7.0.22\webapps\ROOT\WEB- 中使用 portal-ext.properties 修改了 Liferay 页面的静态页面INF\类
**portal-ext.properties
auth.login.community.url=/Test.jsp**
此特定 Test.jsp 保存在路径 D:\Liferay\Liferay Tomcat\liferay-portal-6.1.0-ce-b4\tomcat-7.0.22\webapps\ROOT 下
这是我的 Test.jsp 页面
<form method="POST" action="/MyActionclass">
Enter your name:</font><input type="text" name="username" size="20"></p>
Enter your password:</font><input type="text" name="password" size="20"></p>
</form>
这工作正常,自定义页面已加载。
请告诉我,在哪里配置这个 MyActionclass 以便它接收从 JSP 提交的数据?
我的要求是,一旦在 MyAction 类中验证了用户名和密码(按照现在的硬编码),我将显示我开发的 portlet。