struts2的主题(Struts 2 Themes)和注解(struts 2 annotations)

struts2的主题,即struts2标签的显示样式。

在jsp界面中,我们用到了很多struts2的标签,struts2框架会根据这些标签自动生成对应的html代码,同时指定了样式和布局。而这些样式和布局,是由struts2的主题(theme)决定的。

struts2有三个内建的主题:simple, xhtml, css_xhtml,如果没有显示指定它的主题,则默认是xhtml。

要指定主题,有很多种方式,比如在标签中通过theme属性:<s:form action='saveOrUpdatePerson' theme="xhtml">,还可以:

  1. The theme attribute on the specific tag
  2. The theme attribute on a tag's surrounding form tag
  3. The page-scoped attribute named "theme"
  4. The request-scoped attribute named "theme"
  5. The session-scoped attribute named "theme"
  6. The application-scoped attribute named "theme"
  7. The struts.ui.theme property in struts.properties (defaults to xhtml)
这些内建的主题在 Struts 2 core jar文件里,在该jar包下,有 template.css_xhtml, template.simple, 和template.xhtml文件夹。这些文件夹下有struts2三个内建主题的模板,每个struts2标签对应一个文件。如checkbox.ftl(用到了FreeMarker,struts2框架利用该引擎生成对应于struts2标签的html代码)。在 template.xhmtl 里面还有styles.css文件,该文件作用于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注解的简单了解就到这里,要了解更多,参考官方文档或者网上的其他资料。


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值