我正在使用 struts portlet 桥开发基于 struts 1.2.9 的 JSR-286 兼容 portlet(由于历史原因,我们希望重用大量现有代码)。我想要一些链接来更改 WindowState,但是门户网桥提供的 FormTag 和 LinkTag 没有简单的方法来设置 WindowState。我很高兴扩展这两个标签,但不确定如何继续,如何确定需要以与门户无关的方式添加哪些请求参数?
问问题
1051 次
1 回答
2
哦,好吧,还不如回答我自己的问题:-)
我必须基于(而不是扩展)struts 桥代码创建自己的TagsSupport、FormTag 和LinkTag 版本。
我修改了 TagsSupport.getUrl() 和 TagsSupport.getFormTagRenderFormStartElement() 方法以接受 WindowState 参数并在创建渲染和操作 URL 时使用它。
public static String getURL(PageContext pageContext, String url, PortletURLTypes.URLType type, WindowState ws)
...
if ( type.equals(PortletURLTypes.URLType.ACTION) )
{
final PortletURL portletURL = StrutsPortletURL.createActionURL(pageContext.getRequest(), url);
if (ws!=null) {
try {
portletURL.setWindowState(ws);
}
catch (WindowStateException e) {
e.printStackTrace();
}
}
return portletURL.toString();
}
else if ( type.equals(PortletURLTypes.URLType.RENDER) )
{
final PortletURL portletURL = StrutsPortletURL.createRenderURL(pageContext.getRequest(), url);
if (ws!=null) {
try {
portletURL.setWindowState(ws);
}
catch (WindowStateException e) {
e.printStackTrace();
}
}
return portletURL.toString();
}
...
和
public static String getFormTagRenderFormStartElement(PageContext pageContext, String formStartElement, WindowState ws)
{
if ( PortletServlet.isPortletRequest(pageContext.getRequest()))
{
int actionURLStart = formStartElement.indexOf("action=") + 8;
int actionURLEnd = formStartElement.indexOf('"', actionURLStart);
String actionURL = formStartElement.substring(actionURLStart,
actionURLEnd);
final PortletURL portletURL = StrutsPortletURL.createActionURL(pageContext.getRequest(),
actionURL);
if (ws!=null) {
try {
portletURL.setWindowState(ws);
}
catch (WindowStateException e) {
e.printStackTrace();
}
}
formStartElement = formStartElement.substring(0, actionURLStart)
+ portletURL.toString()
+ formStartElement.substring(actionURLEnd);
}
return formStartElement;
}
然后我更改了 FormTag 和 LinkTag 以接受 WindowState 属性并将其传递给 TagsSupport 中的方法。
private String windowState;
public String getWindowState() {
return windowState;
}
public void setWindowState(String windowState) {
this.windowState = windowState;
}
和
url = TagsSupport.getURL(pageContext, url, urlType, new WindowState(getWindowState()));
显然,然后需要一个 tld 来引用我修改后的标签。
这已作为补丁PB-91(还包含更改 portlet 模式的修复程序)提供给 struts 桥项目。
于 2009-06-24T08:57:54.333 回答