• 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:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

Spring Web Flow question

 
Ranch Hand
Posts: 71
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm looking at an example of Spring Web Flow from "Spring In Action, Volume 4" by Craig Walls. A main flow calls a customer flow defined by customer.xml:



The deliveryWarning view state, <view-state id="deliveryWarning"> is backed up by the view deliveryWarning.jsp:




My question is why isn't the <a href="...."/> in deliveryWarning.jsp wrapped in CDATA as follows:

 
Ranch Hand
Posts: 43
Spring Tomcat Server Chrome
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Why do you think should it be wrapped in CDATA? Is it because of the '${flowExecutionUrl}'?

That is a property placeholder. A little bit is explained at the bottom of section 8.3.1 in that book you mentioned.
 
reply
    Bookmark Topic Watch Topic
  • New Topic