Search:

Type: Posts; User: james.estes; Keyword(s):

Search: Search took 0.03 seconds.

  1. You might check this thread: ...

    You might check this thread:

    http://forum.springframework.org/showthread.php?t=18640
  2. Yeah...don't know how I missed it. I think the...

    Yeah...don't know how I missed it. I think the '10' sillyValue constructor arg was throwing me off...thought that was intended to be answering the runtime val problem. I see you had it up there all...
  3. >Personally I don`t like having a single 'import...

    >Personally I don`t like having a single 'import org.springframework'
    in my objects (only the ones that where design for Spring).

    I agree.

    I think something similar to what you've described...
  4. Injecting runtime constructor-arg properties

    I was working with a friend on a command pattern he wanted to implement. The commands would be spring-managed (so non-singleton of course) and be constructor-injected. The Commands require runtime...
  5. Replies
    39
    Views
    30,394

    I ran into nucleus a few months back (march) and...

    I ran into nucleus a few months back (march) and posted about it on the dev-list (no replies...guess I should have posted here). I was shocked when I saw how long it had been around...certainly well...
  6. Replies
    27
    Views
    5,481

    I originally invisioned them being used to...

    I originally invisioned them being used to resolve and inject Paths into beans. For example, if I had code that wanted to read from a file I typically had a setBlahPath method that would be injected...
  7. Replies
    27
    Views
    5,481

    http://opensource.atlassian.com/projects/spring/br...

    http://opensource.atlassian.com/projects/spring/browse/SPR-260
  8. Fixed. That's awesome. Thanks.

    Fixed. That's awesome. Thanks.
  9. Posted. ...

    Posted.

    http://opensource.atlassian.com/projects/spring/browse/SPR-587
  10. GenericFilterBean.shouldNotFailOnInvalidProperty

    I have a Filter that delegates to a spring-managed filter (similar to ACEGI's FilterToBeanProxy). The Filter I am delegating to is a 3rd party filter that requires all initialization parameters be...
  11. Replies
    4
    Views
    4,533

    At the end of the day, its really just asking...

    At the end of the day, its really just asking that the dtd/container help me take advantage of the PropertyEditors wherever I can. I would say that, personally, there are probably not enough...
  12. Replies
    4
    Views
    4,533

    'type' attribute for the value tag

    Just wondering if anyone else would find a 'type' attribute on the 'value' tag useful (or even possible)...optional of course. It would be especially useful for building lists/maps when I want to...
  13. Replies
    4
    Views
    7,853

    Jira Issue Posted

    http://opensource.atlassian.com/projects/spring/browse/SPR-303
  14. Replies
    4
    Views
    7,853

    Thanks, I'll check out iBatis...I've heard so...

    Thanks, I'll check out iBatis...I've heard so much about it I'm not sure why I haven't had a look already. I'll be posting the Jira issue later today.

    James
  15. Replies
    4
    Views
    7,853

    Named Bind Variables

    I'm going to post an issue in JIRA, but it appears down. Thought I'd post here to get some feelers.

    When I first started using the SqlQuery objects, I noticed that the
    SqlParameter object has a...
  16. To switch the classloader policy, open up the...

    To switch the classloader policy, open up the server configuration, and go to the 'Applications' tab. Expand the ear and click on the web project, then select PARENT_LAST from the drop-down to the...
  17. This approach should work as long as you: -...

    This approach should work as long as you:
    - Added the utility projects to the Java Jar Dependency List (in the web project's manifest, as well as the EJB Project). May not actually be neccessary,...
  18. Replies
    7
    Views
    4,289

    What I don't like about this approach is that I...

    What I don't like about this approach is that I am directly dependant on Spring. I realize in this case, the code is based on Spring code anyway...but I'm talking more generally here. This...
  19. Replies
    2
    Views
    2,165

    Support for this was added in 1.1 RC 1. Be sure...

    Support for this was added in 1.1 RC 1. Be sure to set the name attribute for the bean to the full path of the action mapping (including the module prefix).

    <bean id="testAction"...
  20. Replies
    5
    Views
    4,746

    ...

    <context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>/WEB-INF/applicationContext.xml /WEB-INF/jForumFusion-servlet.xml</param-value>
    </context-param>
    Should work just...
  21. Replies
    5
    Views
    4,746

    Filter and WebApplicationContextUtils

    Probably the simplest way would be to add a servlet context parameter in your web deployment descriptor

    From the Reference Guide:

    <context-param>
    <param-name>contextConfigLocation</param-name>...
  22. Replies
    6
    Views
    4,742

    I don't think this is spring-specific: ...

    I don't think this is spring-specific: "Attempted to use a 4.0 DataSource from a 2.3 (or higher) servlet. " You should be getting this message anywhere you attempt to get the reference to that...
  23. Replies
    7
    Views
    3,949

    The Spring-IDE plugin is just that, a plugin. ...

    The Spring-IDE plugin is just that, a plugin. Unlike MyEclipseIde, which is really a separate install of eclipse with some added capabilities (more than just plugins? licencing reasons for...
  24. Replies
    6
    Views
    36,428

    Re: Bean creation via static factory method

    Something like this will work:


    <bean id="myController" class="com.foo.SomeController">
    <property name="theirsRemoteObject">
    <bean factory-method="getTheirsRemoteObjectInstance"...
Results 1 to 24 of 24