Search:

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

Page 1 of 20 1 2 3 4

Search: Search took 0.05 seconds.

  1. I filed a new Jira Ticket to address this...

    I filed a new Jira Ticket to address this http://opensource.atlassian.com/projects/spring/browse/MOD-366.

    Thanks.
  2. What Spring jars do you have in your classpath?...

    What Spring jars do you have in your classpath?
    Also, you may disable EventPublishing upon request handling by adding

    <init-param>
    <param-name>publishEvents</param-name>
    ...
  3. in your DelegateOne class, you need to create a...

    in your DelegateOne class, you need to create a method whose signature is

    (ModelAndView | Map | void) actionName(HttpServletRequest request, HttpServletResponse response, CommandClass command) ...
  4. In Spring 2.0, you can access the request context...

    In Spring 2.0, you can access the request context from any class using RequestContextHolder.

    HTH.
  5. You may also 3. refactor the code to obtain...

    You may also
    3. refactor the code to obtain instances of X from the BeanFactory
    4. if you can access the HttpServletRequest or ServletContext from X, gain access to the application context using...
  6. The exception does not seem to be related to the...

    The exception does not seem to be related to the Spring Framework.

    I run into a weird bug some weeks before after migrating our application from SUN JDK 1.4 on Linux to IBM JDK 5 on Linux. It...
  7. 2.0 is a drop in replacement for Spring 1.X. ...

    2.0 is a drop in replacement for Spring 1.X.

    HTH.
  8. Replies
    4
    Views
    1,318

    Sorry, I may be missing something here, what do...

    Sorry, I may be missing something here, what do you mean by
  9. Please take a look at AbstractFormController...

    Please take a look at AbstractFormController Javadocs. You will find a complete description of this class Workflow.

    HTH
  10. Replies
    2
    Views
    2,369

    I do not think you may mix HQL and SQL in the...

    I do not think you may mix HQL and SQL in the same query.
    One solution here would be to used named SQL queries. You may need to review Hibernate Reference Documentation.

    HTH.
  11. That's strange!!! did you try adding some...

    That's strange!!! did you try adding some breakpoints? you may also try

    Advised dao = (Advised) applicationContext.getBean("clinic");
    Class targetClass =...
  12. You may review the imagedb sample from the spring...

    You may review the imagedb sample from the spring main distribution ImageController#streamImageContent().

    HTH.
  13. Replies
    3
    Views
    915

    If you're using SimpleFormController, you may...

    If you're using SimpleFormController, you may force the page to resubmit, and override SimpleFormConroller.isFormChangeRequest to disable processing the submission.
  14. Replies
    6
    Views
    1,247

    Yes, they are just one smaller part of what is...

    Yes, they are just one smaller part of what is needed to make a jsp/servlet web application.
  15. Replies
    4
    Views
    1,318

    do you get any Exception on 1st line?

    do you get any Exception on 1st line?
  16. Replies
    1
    Views
    1,074

    1. create the controller(s) 2. register the...

    1. create the controller(s)
    2. register the controller(s) in <name>-servlet.xml and configure the handler mapping for it / them
    3. in web.xml, add a servlet tag
    4. in web.xml, add the required...
  17. Sebastian, BeanFactoryPostProcessor are...

    Sebastian,

    BeanFactoryPostProcessor are applied to the BeanFactory rather than the containing xml file.

    I can think of two solutions to work arround this:
    - refactor out your...
  18. Replies
    1
    Views
    1,032

    Hope this may help you: ...

    Hope this may help you:

    http://forum.springframework.org/showthread.php?t=16924
  19. Replies
    5
    Views
    1,253

    @Transactional does not have such an attribute....

    @Transactional does not have such an attribute. You have to define the TransactionManager to POJOs mapping in your configuration file.

    HTH.
  20. Replies
    1
    Views
    1,163

    Could you post relevant parts of the config /...

    Could you post relevant parts of the config / code?
  21. Replies
    1
    Views
    889

    Remove the extra spaces and LF in the props: ...

    Remove the extra spaces and LF in the props:

    <prop key="/student/student-list.html?remove*">removeStudent</prop>
    <prop key="/student/student-list.html/add*">addStudent</prop>
    HTH.
  22. Pierre, You need to use...

    Pierre,

    You need to use org.springframework.jdbc.datasource.UserCredentialsDataSourceAdapter. You may review the javadoc and search the forum for more details.

    HTH.
  23. Replies
    1
    Views
    871

    binds...

    <spring.bind path="<your-command-name>.*"> binds all the attributes on the command, and thus, returns all the errors in the command.

    if you use Spring 2.0 M3 or above, you may also use the new...
  24. Replies
    1
    Views
    832

    As the javadoc states, DriverManagerDataSource is...

    As the javadoc states, DriverManagerDataSource is not intended for production use since it has no pooling capabilities.

    You may keep using DMDD in developement/testing and switch to a better...
  25. Another option is to use Webservices. Spring has...

    Another option is to use Webservices. Spring has built-in support for exporting webservices as well.

    take a look at org.springframe.remoting.jaxrpc.*

    HTH.
Results 1 to 25 of 500
Page 1 of 20 1 2 3 4