<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>O!Hacker Blog &#187; Stripes</title>
	<atom:link href="http://ohacker.com/tag/stripes/feed/" rel="self" type="application/rss+xml" />
	<link>http://ohacker.com</link>
	<description>anything to hack</description>
	<lastBuildDate>Thu, 12 Aug 2010 05:17:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>RESTful with Stripes</title>
		<link>http://ohacker.com/2009/09/21/restful-with-stripes/</link>
		<comments>http://ohacker.com/2009/09/21/restful-with-stripes/#comments</comments>
		<pubDate>Mon, 21 Sep 2009 21:58:22 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Stripes]]></category>

		<guid isPermaLink="false">http://localhost/blog/?p=75</guid>
		<description><![CDATA[stripes是一个基于Annotation的Java MVC Framework,而且还提供了强大的RESTful特性，甚至可以直接将url绑定到Action类中的方法上， 比如有一个Action用来处理与用户有关的请求，其中有一个方法用来处理注册，而你就可以使用@UrlBinding like this: @UrlBinding&#40;&#34;/user/{$event}/{identifer}&#34;&#41; public UserActionBean extends ActionBean&#123; private String identifer; public void setIdentifer&#40;String identifer&#41;&#123; this.identifer=identifer; &#125; public String getIdentifer&#40;&#41;&#123; return this.identifer; &#125; public Rasolution register&#40;&#41;&#123; ..... &#125; &#125; 此时，你就可以通过www.xxx.com/user/register/1 来注册用户了 相关日志stripes beginning]]></description>
		<wfw:commentRss>http://ohacker.com/2009/09/21/restful-with-stripes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>stripes beginning</title>
		<link>http://ohacker.com/2009/07/28/stripes-beginning/</link>
		<comments>http://ohacker.com/2009/07/28/stripes-beginning/#comments</comments>
		<pubDate>Tue, 28 Jul 2009 16:23:52 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Stripes]]></category>

		<guid isPermaLink="false">http://localhost/blog/?p=15</guid>
		<description><![CDATA[Stripes 是一个使用了最新技术的前端web框架，和其他web相比，它的配置更少，基本是使用annotation完成。 下面是web.xml文件 &#60;filter&#62; &#60;display-name&#62;Stripes Filter&#60;/display-name&#62; &#60;filter-name&#62;StripesFilter&#60;/filter-name&#62; &#60;filter-class&#62;net.sourceforge.stripes.controller.StripesFilter&#60;/filter-class&#62; &#60;init-param&#62; ActionResolver.Packages&#60;/param-name&#62; net.sourceforge.stripes.examples&#60;/param-value&#62; &#60;/init-param&#62; &#60;/filter&#62; &#60;filter-mapping&#62; &#60;filter-name&#62;StripesFilter&#60;/filter-name&#62; &#60;url-pattern&#62;*.jsp&#60;/url-pattern&#62; &#60;dispatcher&#62;REQUEST&#60;/dispatcher&#62; &#60;/filter-mapping&#62; &#60;filter-mapping&#62; &#60;filter-name&#62;StripesFilter&#60;/filter-name&#62; &#60;servlet-name&#62;StripesDispatcher&#60;/servlet-name&#62; &#60;dispatcher&#62;REQUEST&#60;/dispatcher&#62; &#60;/filter-mapping&#62; &#60;servlet&#62; &#60;servlet-name&#62;StripesDispatcher&#60;/servlet-name&#62; &#60;servlet-class&#62;net.sourceforge.stripes.controller.DispatcherServlet&#60;/servlet-class&#62; &#60;load-on-startup&#62;1&#60;/load-on-startup&#62; &#60;/servlet&#62; &#60;servlet-mapping&#62; &#60;servlet-name&#62;StripesDispatcher&#60;/servlet-name&#62; &#60;url-pattern&#62;*.action&#60;/url-pattern&#62; &#60;/servlet-mapping&#62; 相关日志RESTful with Stripes]]></description>
		<wfw:commentRss>http://ohacker.com/2009/07/28/stripes-beginning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
