1. 程式人生 > >Struts2點選連結執行action方法

Struts2點選連結執行action方法

直接使用href=action即可:

無引數:

<a href=getJournals>日誌</a>

有引數:

<a href="getJournals?id=33&title=ttt">日誌</a>

所跳轉頁面可在struts.xml中配置:

<action name="getJournals" class="com.flowers.with.controler.Journals" method="obtainJournals">
 <result name="success">/WithView/journals.jsp</result>
</action>

另:

有引數需在action呼叫方法中增加:

private int id;
private String title;

並新增getters和setters方法。