struts2的主题,即struts2标签的显示样式。
在jsp界面中,我们用到了很多struts2的标签,struts2框架会根据这些标签自动生成对应的html代码,同时指定了样式和布局。而这些样式和布局,是由struts2的主题(theme)决定的。
struts2有三个内建的主题:simple, xhtml, css_xhtml,如果没有显示指定它的主题,则默认是xhtml。
要指定主题,有很多种方式,比如在标签中通过theme属性:<s:form action='saveOrUpdatePerson' theme="xhtml">,还可以:
- The theme attribute on the specific tag
- The theme attribute on a tag's surrounding form tag
- The page-scoped attribute named "theme"
- The request-scoped attribute named "theme"
- The session-scoped attribute named "theme"
- The application-scoped attribute named "theme"
- The struts.ui.theme property in struts.properties (defaults to xhtml)
如果要使用自己定义的主题,则可以这样:
在webapp下(或者WebContent)建立一个template文件夹,然后在该文件夹下建立主题文件夹(该文件夹的名字即为我们自定义主题的名字),在主题文件夹下,建立我们的.ftl文件。如:
/WebContent/template/myThemes/theme1.ftl
写好之后,要在标签中使用theme1.ftl定义的主题,则可以这样:
<s:form action='saveOrUpdatePerson' theme="myThemes">
struts2的注解(annotations):
struts.xml的作用是将界面中调用的action对应到具体的action处理类,它配置了界面上action名字到ActionSupport类的对应关系,以及调用ActionSupport类的哪个方法,指定返回界面。
struts2提供了另一种方式来达到这种目的,那就是通过struts2注解。
要使用struts2注解,在你工程的class path里需包含Convention plugin jar包(struts2-convention-plugin-2.2.1.jar),通过struts2注解,你就不需要struts.xml配置文件了。
假如你在界面中有一个链接,该链接配置的action为"hello", 如<p><a href="<s:url action='hello' />" >Get your hello.</a></p>
当你点击该链接的时候,struts2框架会查找以action结尾的包,如package org.apache.struts.struts2annotations.action;
然后根据名字(hello),查找HelloAction类,该类需要继承ActionSupport类,找到之后,则执行里面的execute方法。该方法返回"success"的话,struts2框架会自动设置返回界面为hello-success.jsp,然后返回该页面(注:该页面需要放在目录WEB-INF/content下,因为struts2的Convention插件会默认从这里找Jsp界面)。如果execute方法返回"input"或者"error"的话,则相应的返回hello-input.jsp和hello-error.jsp页面。
上面这些是Convention插件提供的简单的自动对应。目前为止,我们还没有用到struts2注解(也是由Convention插件提供的)。
如果在界面中,有<p><a href="<s:url action='register-input' />" > Register for the drawing.</a></p>。
且我们想当点击该链接的时候调用action类的input方法,可以怎么做呢? 看下面:
@Action("register-input")
public String input() throws Exception {
logger.info("In input method of class Register");
return INPUT;
}
上面 代码用到了注解"@Action("register-input")"。该注解表示:当链接的action值是"register-input"的时候,执行这个input方法。
该方法返回"input",然后返回register-input.jsp,如果返回"success", 则返回register-success.jsp。
好了,struts2注解的简单了解就到这里,要了解更多,参考官方文档或者网上的其他资料。