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...
Type: Posts; User: kulnor; Keyword(s):
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...
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...
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...
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...
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,...
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...
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>...
Oliver:
Are @QueryHint on CRUD methods supported in JPA 1.0.2?
thanks
*K
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
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...