Search:

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

Page 1 of 3 1 2 3

Search: Search took 0.02 seconds.

  1. Replies
    0
    Views
    365

    Custom Map serialization/de-serialization

    I came up with a problem related to serialization of Map having non-String key using Flex/Spring BlazeDS.

    My class looks like about this:



    MyEntity{
    private Map<Entity2, Enum1> myMap
    }
  2. Replies
    0
    Views
    450

    Configuring custom ExceptionLogger

    Hi!

    I am using Spring Flex 1.5.0.RELEASE. I want to create a custom implementation of org.springframework.flex.core.ExceptionLogger-interface and plug it in. How do configure it?
  3. Replies
    2
    Views
    1,259

    Thanks for reply. I didn`t notice that...

    Thanks for reply.

    I didn`t notice that converters were used default only for outgoing direction. But that explains all. :)

    edit. Actually I noticed MessageInterceptor is better choice in my...
  4. Replies
    2
    Views
    1,259

    Plugging a custom ConversionService

    Hi,

    I have situation, where I need to convert some parameter object value before the actual method is called. I created a GenericConverter implementation, which handles the conversion.

    I...
  5. Thanks for answering. I`m using Commons...

    Thanks for answering. I`m using Commons BasicDatasource. You might be right, it could be datasource pooling problem.

    But, I haven`t been able to repet this problem again, everything has worked...
  6. HibernateCursorItemReader - scrollable result sets are not enabled

    Hi,

    I have a Spring Batch job, which uses HibernateCursorItemReader for reading some items from SQL Server 2008 database. The job has worked fine in unit & integration tests and in test...
  7. Replies
    1
    Views
    1,174

    Concurrent jobs - queue

    Hi,

    I am looking for a way to execute multiple jobs with queuing, each job must be finished before next starts. Does Spring batch support this out-of-the-box?
  8. Replies
    1
    Views
    1,015

    Resolved this. I used dynamic SQL generation...

    Resolved this.

    I used dynamic SQL generation with late binding. Idea got from here: http://forum.springsource.org/showthread.php?t=73562
  9. Replies
    1
    Views
    1,015

    Jobparameters to PreparedStatementSetter

    Hi,

    I have typical batch situation, where I use JdbcCursorItemReader with prepared statement for reading database. PreparedStatement parameter values should be set from JobParameters dynamically....
  10. Replies
    3
    Views
    2,057

    Yes, we have SpringSecurityFilterChain fully...

    Yes, we have SpringSecurityFilterChain fully configured.

    The problem is session time-out, that throws that exception. That blocks the whole application, if exception is not catched no...
  11. Replies
    3
    Views
    2,057

    Spring Security session handling

    We are having an issue related to some kind of Spring security session handling.

    Our case is:
    User logs in via Spring security / BlazeDS integration. Use stops his interaction, but does not...
  12. Resolved this by myself. ResultSet iteration...

    Resolved this by myself.

    ResultSet iteration in mapper was not good choice, because it mixed up the cursor position in reader.

    Instead, I created a NullObject for my model (using the NULL...
  13. Replies
    27
    Views
    4,939

    Some personal new recommendations: Working...

    Some personal new recommendations:
    Working Effectly with legacy code
    Agile software development - princibles, patterns and practices
  14. Replies
    10
    Views
    9,358

    Well, you can use JdbcTemplate ...

    Well, you can use JdbcTemplate to query your procedures with standard "call procedure (?, ?)" syntax.

    Hibernate also supports stored procedures with procedure mapping, see...
  15. Hmm..it seems that this can be done with...

    Hmm..it seems that this can be done with fetchsize. Have to test that..I could maybe iterate resultset on mapper fetchsize times.

    Doesn`t anyone have any comments on this?
  16. Here is an example for this. Database...

    Here is an example for this.

    Database contains 30 rows. 3 specified rows (columX, columnY, columnZ etc) must be mapped to one object




    DATABASE
    -------------------------------------...
  17. JDBCCursorItemReader - read multiple rows as one object

    Hi,

    I`m using JdbcCursorItemReader to read database.

    How can I read multiple rows with one cursor call? This resultset (say about 5 rows) should be mapped to one object with mapper.
  18. Replies
    6
    Views
    999

    One choice that came me mind was "staging area...

    One choice that came me mind was "staging area database". Instead of writing WS output to console, we could write them into temporary database. After that, we read & write items from staging are to...
  19. Replies
    6
    Views
    999

    Yeah, Web Service was .NET WCF Web Service and...

    Yeah, Web Service was .NET WCF Web Service and the console-client was .NET.

    It was easy to do .NET client for it, but from Java client side it was extremely painfull to create it. We tried with...
  20. Replies
    6
    Views
    999

    Yep, we had to do this because of extremely bad...

    Yep, we had to do this because of extremely bad interoperability problems between Java Web Service client & MS.NET WS.

    We are just thinking is there any more better options..
  21. Replies
    6
    Views
    999

    Batch case scenario

    I am having interesting scenario with batch application.

    Batch app should write results from Web Service to database. Problem was communication between our client and WS service, so we did come...
  22. Thread: new to Spring

    by Durden
    Replies
    4
    Views
    1,212

    This is quite general Spring-architecture: ...

    This is quite general Spring-architecture:


    Web layer
    Service layer
    DAO layer (including DAO`s & rich domain model)


    So the call chain goes like this:
  23. Replies
    3
    Views
    3,126

    Personally I don`t like to externalize HQL/SQL...

    Personally I don`t like to externalize HQL/SQL queries. In the most cases, the DAO method local variable or class instance variable should contain the query string.

    But, if you have lots and lots...
  24. Replies
    27
    Views
    4,939

    Picking this topic up. :) I am looking for...

    Picking this topic up. :)

    I am looking for good books on architecture/framework design. Any suggestions?

    These are already in my bookshelf:

    Effective Java
    J2EE expert one on one
    J2EE...
  25. I would recommend you to use Maven...

    I would recommend you to use Maven to manage your dependencies explicitly. Much easier to maintain. :)
Results 1 to 25 of 75
Page 1 of 3 1 2 3