• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Wildcard Actions

 
Ranch Hand
Posts: 95
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi

my actions are like

<action name="save" class="example.Save">
<result type="tiles">tiles:admin.save</result>
</action>

so the url would be like
localhost:8080/save.action


Now if I have a url for a image like so
localhost:8080/MyApp/content/4/images/myPic.jpg

How can i wildcard this url to hit my action. This is what I tried

<action name="*content*" class="save.ServeContent">
<result name="NONE"></result>
</action>

Hope I can do this?

 
Sheriff
Posts: 9707
43
Android Google Web Toolkit Hibernate IntelliJ IDE Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I asked this some time ago. I think this will also be applicable here.

https://coderanch.com/t/445089/Struts/Search-engine-friendly-URLs-struts
 
Ally Cavs
Ranch Hand
Posts: 95
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

Thanks for your very quick reply. im confused though. Are you sayiing to use the res plugin?

Do I really have to that?
Is there not another way?

Thanks,
Alan
 
reply
    Bookmark Topic Watch Topic
  • New Topic