Search:

Type: Posts; User: CameronL; Keyword(s):

Search: Search took 0.03 seconds.

  1. Well this would work at the controller level with...

    Well this would work at the controller level with my simple example that only has one method, but I actually have multiple methods in my controller, each mapped with a different RequestMapping (GET,...
  2. Multiple instances of annotated Controller with RequestMapping

    Using Spring 3.1 with MVC Java Config, I'm attempting to deploy an application with multiple instances of the same Controller, mapped to different endpoints. My Controller methods are also annotated...
  3. Replies
    1
    Views
    395

    Found my answer here:...

    Found my answer here:
    http://stackoverflow.com/questions/5744133

    Basically, add the ModelMap (which has already been "enriched") as an input parameter to your handler method, and then clear it.
    ...
  4. Replies
    1
    Views
    395

    Disable enriching Model in response

    For most of the return types in RequestMapping, the doc says: "The model will be implicitly enriched with command objects..."

    As such, my command object appears in the output. I haven't been able...
  5. Unmarshalling Multiple Classes with Same Root Element Name

    I have two classes annotated for jaxb that share the same root element name. When using the RestTemplate to unmarshall each type separately, it appears the Jaxb2RootElementHttpMessageConverter...
  6. Dave provided a workaround in BATCH-1420 for...

    Dave provided a workaround in BATCH-1420 for those who are still using 2.0.3.

    "just pull the inner bean definition (the preparedStatement Setter in your example) with the <list> of placeholders...
  7. Replies
    8
    Views
    1,996

    Yep...I created BATCH-1420 for this problem. ...

    Yep...I created BATCH-1420 for this problem. Dave has given a workaround as well as a fix, but I haven't been able to try them myself yet...I'll get to it soon
  8. Replies
    8
    Views
    1,996

    Have you guys been able to verify that this issue...

    Have you guys been able to verify that this issue was fixed in 2.0.3.RELEASE? I'm currently using that version and am running into the exact same issue still
  9. I'm facing a very similar problem. I'm pretty...

    I'm facing a very similar problem. I'm pretty sure I've been able to determine that the cause is the late binding. In your first example, you were using it as well:

    '#{jobParameters[refId]}

    I...
  10. Replies
    0
    Views
    783

    Late Binding in Partitioned Steps

    I haven't been able to get late binding to work in my partitioned steps. I've followed the documentation on how to do it here:...
  11. Replies
    1
    Views
    1,244

    Obtaining hash or anchor (#) value in URL

    Is there any way in Spring (or in j2ee for that matter) either through binding or whatever to obtain the value after the hash (#) in a URL?

    For example:...
  12. It would seem that this is very likely seeing as...

    It would seem that this is very likely seeing as how FormAction isn't even mentioned in the SWF 2.x docs. We started building our SWF 2.x app with FormAction and then realized that it wasn't...
  13. Replies
    6
    Views
    1,092

    Well, I have a flow that requires an Id be...

    Well, I have a flow that requires an Id be specified as an input. If there is no "id" parameter specified when attempting to enter the flow, I'd like to redirect back to a page where the user can...
  14. Replies
    2
    Views
    1,217

    I think he was referring to browser tabs... ...

    I think he was referring to browser tabs...

    I'm having what I think is a similar issue. I enter a flow and set a few objects in my flowScope. Before that flow ends, if I open another browser and...
  15. Replies
    6
    Views
    1,092

    Marking an input as required

    According to the documentation, I should be able to specify when an input variable is required. Like so:


    <input name="hotelId" type="long" value="flowScope.hotelId" required="true" />
    ...
Results 1 to 15 of 15