What are the lesser-known but useful features of the Struts 2 framework?
- Try to limit answers to Struts 2 framework as it is way too different from the previous versions.
- One feature per answer.
|
|
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
NamedVariablePatternMatcherThe
Additionally, with a little extra configuration, you can have these named patterns mapped within action names as well as namespaces. More Information |
|||||||||
|
|
I don't think S2 has that many hidden features! It has very good orthogonality of use, and a shallow learning curve (well compared to other Java technologies you'll often find in your stack ie: spring, JPA). Ha, I did think of one hackish thing, people returning json from their actions sometimes want access the functionality s2 tags in the action. I've not implemented this but asked about it http://www.mail-archive.com/user@struts.apache.org/msg98124.html this really supports the first point as this isn't a core feature. You need to go out of your way to find something odd, although such features as the tag lib exposed as an API to the actions would be quite useful in such cases. To return json the easiest way is with the S2 Json plugin. So this isn't in the core of S2, but many of the plugins are very valuable. Particularly the conventions plugin which can all together remove S2 xml configuration files. |
||||
|
|
|
The s:component tag. A quick way to make small components, compared to all the work involved creating a custom tag. |
||||
|
|
|
Totally agree with @Quaternion; most of Struts2 "hidden" functionality is based on its plugins, more and more comes and sometimes we do not review them, and as result one day we read some blogs and are surprised that something can be done much more easier with Struts2, or cleaner way (like mentioned conventions plugin; I'm going to give it a try otherwise I am lost with a lot of my configuration files) It was my introductory clause ;) and now the last surprised me thing from S2 world: Struts2-CDI plugin. For now it is even so hard to find any information about it, all I saw was ab announcement, more than one year gone, seems like no release yet, but people already could use it to experiment. And here I can just forward you to Pascal Thivent's answer in dedicated to this plugin topic, he described the way of using it. |
|||
|
|
|
One thing that I found most interesting about Struts 2 is that it's decoupled from the Servlet API. This makes it easier to test controller classes outside the context of the request/response model. This isn't limited to just Struts 2 though, with Spring MVC. I've accomplished the same. More information on Struts 2 can be found here: http://www.javabeat.net/articles/69-whats-new-in-struts-20-struts-20-framework-1.html |
|||
|
|