Search:

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

Search: Search took 0.02 seconds.

  1. Replies
    0
    Views
    366

    Multi-row fetch with DB2?

    I'm using Spring JdbcTemplate / DBCP with IBM DB2 Express-C database but can't seem to find a way to use multi-row fetching for select queries. Iterating the resultset is painfully slow as each row...
  2. Spring data jpa schema validation error on repository complex type

    Since this morning, we're experiencing a validation error in our Spring application context files with the
    http://www.springframework.org/schema/data/jpa namespace
    located at...
  3. Thread: UNION support?

    by kulnor
    Replies
    0
    Views
    170

    UNION support?

    Are UNION statement supported in @Query in a repository
    Tried several variations around the statement following but can't seem to get this to work.
    thanks
    *K


    @Query("SELECT distinct...
  4. Replies
    0
    Views
    283

    Disable load time weaver?

    Is there an easy way to disable load time weaving when using EclipseLink with Data JPA? This is mainly for testing under a Google Web Toolkit development environment (can't get the built in Jetty to...
  5. findBy*In missing right parenthesis SQL error

    I'm experiencing issues with the findBy<field>In(Collection<Long> itemIds) method using a JpaRepository.

    Whenever I call the method with a collection of identifiers containing more than one entry,...
  6. Replies
    2
    Views
    572

    Note that if I create my own method, this works...

    Note that if I create my own method, this works fine:

    @Query("select t1 from AdminRecord t1 where t1.itemId in ?1")
    public List<AdminRecord> myFindByItemIdIn(Collection<Long> itemIds);

    The...
  7. Replies
    2
    Views
    572

    missing right parenthesis with findIn

    I have a simple repository class based on a JPA object whose primary key is a Long item_id.
    Just tried to add a findIn method
    public Collection<AdminRecord> findByItemIdIn(Collection<Long>...
  8. Thread: Query Caching

    by kulnor
    Replies
    5
    Views
    2,151

    Oliver: Are @QueryHint on CRUD methods supported...

    Oliver:
    Are @QueryHint on CRUD methods supported in JPA 1.0.2?
    thanks
    *K
  9. Replies
    2
    Views
    387

    Thanks for the feedback. Would you happen to have...

    Thanks for the feedback. Would you happen to have an example of in memory XML bean parsing to create a Job? Or any hint as to which class/method to use.
    best
    *K
  10. Replies
    2
    Views
    387

    Creating job/flow dynamically

    New to Spring Batch. One of my requirement is to be able to dynamically create Job based on user choice or workflow definitions. So basically I don't know the batch XML ahead of time, just have a...
Results 1 to 10 of 10