Search:

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

Search: Search took 0.04 seconds.

  1. Using Spring Security with Oracle WebCenter Portal?

    Our project will eventually migrate to an Oracle WebCenter Portal. I was proposing that we use Spring Security instead of basic JAAS, but our archetect didn't know if Spring Security would be...
  2. Replies
    4
    Views
    1,826

    Thank you - that helps

    Thank you - that helps
  3. Replies
    4
    Views
    1,826

    Can you point me to a URL that explains these two...

    Can you point me to a URL that explains these two annotations? I thought the @ManagedOperation was for the setting of a value or the initiation of a process, and @ManagedAttribute was for passive...
  4. Replies
    4
    Views
    1,826

    JConsole doesn't display setter operation

    I'm using annotations and Spring's auto discovery mode to build the MBeans during start up. The class that has the setter as well as several attributes has the following class annotation:

    ...
  5. Replies
    4
    Views
    1,446

    How is lazy-init="true" different from...

    How is lazy-init="true" different from scope="prototype"?


    <bean id="lazy" class="com.foo.ExpensiveToCreateBean" scope="prototype"/>

    The reason this issue came up was the addition of JMX to...
  6. Replies
    4
    Views
    1,446

    Optionally loading Bean Definitions

    Is there a way to optionally load a Spring bean definition (or set of bean definitions) in the configuration?

    For example, something like ANT's if or unless attributes in the task element. Where...
  7. Replies
    1
    Views
    1,741

    JConsole doesn't see Spring JMX server?

    I wanted to add JMX to our plain (Spring) application. As a simple test case I basically created the examples test class, added it to the root of the application's classpath, and then added the...
  8. OutOfMemoryError in AbstractMessageListenerContainer

    We are trying to process each received JMS message on the onMessage thread from the DefaultMessageListenerContainer. On occasion we get the following error on one of the 25 listeners, or sometimes...
  9. Now I think I understand. What you explained...

    Now I think I understand. What you explained makes sense and that was my concern about what reference of Graph_Worker would be used for the constructor of the CmdLineHelper. I can see the circular...
  10. I do not see why my configuration has a circular...

    I do not see why my configuration has a circular reference.

    1. The Graph_Worker is constructed with out any arguments.
    2. The CmdLineHelper is a post constructor setter of the Graph_Worker.
    3....
  11. Prototype needs to pass its reference to an internal property

    This is probably a simple case, but I couldn't find an example that would convince me the right class instance will be passed. So I hope you don't mind if I ask for a confirmation.

    I need to pass...
  12. Replies
    11
    Views
    2,691

    My appologies to Spring documentation

    Thank you for insisting on the new class. Instead of researching in the JDBC documentation, I looked in the Spring documentation section on Transactions. Everything I need to complete JDBC...
  13. Replies
    11
    Views
    2,691

    RE: Using JdbcTemplate with multiple updates

    I had considered the BatchSqlUpdate, but I wasn't sure HSQL (we use Hypersonic in our JUnits) would support it. I would prefer to use a transaction boundary around the while loop, that is basically...
  14. Replies
    11
    Views
    2,691

    Using JdbcTemplate with multiple updates

    This probably has a simple solution, but I have searched through the material and didn't find an answer. I want to insert several rows using the JdbcTemplate. For example:


    Iterator<DataRow>...
Results 1 to 14 of 14