Search:

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

Search: Search took 0.02 seconds.

  1. Multiple entry-point-ref - Web and Mobile

    In Spring Security 2.0.4 I had two AuthenticationEntryPoint for two of my ExceptionTranslationFilter.

    Mobile Flow
    Normal Web Flow


    With <http> tag, how can we provide multiple custom...
  2. Replies
    3
    Views
    1,375

    Thanks for providing latest Milestone details,...

    Thanks for providing latest Milestone details, while browsing Spring's OAuth forums, I learnt that OAuth work in codehaus is deprecated and all the changes are now shipped over to springframework.
    ...
  3. Replies
    3
    Views
    1,375

    Surprisingly it is still under org.codehaus and...

    Surprisingly it is still under
    org.codehaus and not org.springframework

    spring-security-oauth-1.0.0.M2

    hope so EBR soon provides this jar.
  4. Replies
    3
    Views
    1,375

    Spring OAuth Jar

    Spring OAuth is said to be a part of Spring Security, however Spring Security Core or Web 3.0.5 or earlier jars does not seem to have OAuth packages or files. I checked EBR As well as mvnrepo but...
  5. Replies
    1
    Views
    1,017

    Set DateFormat in Bean's Property

    Set SimpleDateFormat in Bean's Property.

    Hi,
    Currently, I am reading a property file and getting the DateFormat from the property file along with other values and setting the values for my...
  6. Thanks Marten for the prompt reply, Let me clear...

    Thanks Marten for the prompt reply,
    Let me clear what i want to say,

    I have two environments, testing and production. The testing files will never go to production, and hence in the spring config...
  7. Initialize a Controller at Server Startup

    Hi,
    Is there a way to initiazlie an AbstractController at the server startup? I know that initApplicationContext() is the method to initialize a Controller, but i want to call it at the server...
  8. Replies
    1
    Views
    1,017

    You may try declaring your config bean while...

    You may try declaring your config bean while declaring DispatcherServlet.
    I am not sure if this would solve your problem, but give it a try so that the servlet can directly get your config file.

    ...
  9. Config file Bean Scope, Request or session instead of Singleton

    Hi,
    I tried googling to find a way to specify scope of a bean as request or session instead of Singleton. Spring directly supports only two, Singleton or Prototype, but is there any other way to...
  10. Resolved

    Answered. Created a small application and tried simulating my scenario.
    Answer is NO, it DOES NOT maintain the request while doing return new ModelAndView("redirect:"......

    But the question that...
  11. return new ModelAndView("redirect: Is Request maintained?

    Hi,
    I have one very basic question,
    when we say


    return new ModelAndView("redirect:/product.jsp");

    Will the beans/values stored at request level be available in product.jsp?

    The...
  12. Hi all, Even I am facing the same problem, But...

    Hi all,
    Even I am facing the same problem,
    But i fail to understand, where does the controller come into the picture n my case?

    Thsi is the first page of my application and the first time my JSP...
  13. I forgot to mention that in the controller, in...

    I forgot to mention that in the controller, in the constructor I am setting the Command object using


    setCommandClass(ProductCaptureBean.class);


    While returning the value to doOnSubmit...
  14. Error Getting Command object from Controller to View

    Hi,
    I am using SimpleFormController and I have defined a bean as the Command object. I have a form that gets submitted to this SimpleFormController(ProductFormHandler Controller). The JSP that...
  15. Thanks for the pointer.....

    Thanks for the pointer.....
  16. spring:bind command's value in JSP for radio button

    I am using a SimpleFormController and I have defined a command object for my controller which I am using in my JSP page. I am able to set value in text field, but i do not know how should I set a...
  17. Sure, Thanks buddy, i shall give it a try. I was...

    Sure,
    Thanks buddy, i shall give it a try. I was using AbstractController and it used to reset the request scope, I shall give SimpleFormController a try.
  18. I cannot make it a session scope, it is a...

    I cannot make it a session scope, it is a requirement to restrict the bean to request scope.
    So now after processing and finding all the errors on the page and setting it in the bean of request...
  19. Submit a form - Maintain Request variables

    I dont know how would I achieve maintaining Request state with Springframework. If I have set certain values on my bean, how should I access those values in a form? Bean is having Request Scope. Can...
Results 1 to 19 of 19