Spring Projects Issues
Spring Projects Issues
**[Tarun Kumar Das](https://jira.spring.io/secure/ViewProfile.jspa?name=taruntkdmnt)** opened **[DATAJPA-1496](https://jira.spring.io/browse/DATAJPA-1496?redirect=false)** and commented Below Two are my entity 'View' and 'Button' ```java @Entity @Table`(name = "[View]", catalog = "[CatalogName1]") public class View { private UUID id;...
**[Mark Paluch](https://jira.spring.io/secure/ViewProfile.jspa?name=mp911de)** opened **[DATAJPA-1511](https://jira.spring.io/browse/DATAJPA-1511?redirect=false)** and commented Right now the `Between` keyword for dereived queries translates to `>=` and `
**[Michał Winiarski](https://jira.spring.io/secure/ViewProfile.jspa?name=winiarski)** opened **[DATAJPA-1659](https://jira.spring.io/browse/DATAJPA-1659?redirect=false)** and commented CrudRepository.deleteAll() doesn't work on Entity repository if the proxies loaded by findAll are not initialized. Simplified example: entities: ```java @MappedSuperclass class Base { @EmbeddedId...
**[Vladimir Domashnev](https://jira.spring.io/secure/[email protected])** opened **[DATAJPA-925](https://jira.spring.io/browse/DATAJPA-925?redirect=false)** and commented As of 1.10.2, `toJpaOrder(Order, Root, CriteriaBuilder)` method of `org.springframework.data.jpa.repository.query.QueryUtils` ignores null precedence, that is provided by `org.springframework.data.domain.Sort.Order` nullHandling propery, which is present since 1.7.x....
**[ZhangJianAo](https://jira.spring.io/secure/ViewProfile.jspa?name=zhangjianao)** opened **[DATAJPA-1692](https://jira.spring.io/browse/DATAJPA-1692?redirect=false)** and commented In my simple test, I query 1000 entities one by one. Compare "findById" function and a generate function with name "findByIdIs". "findById" using 41840ms and...
**[Sergei Poznanski](https://jira.spring.io/secure/ViewProfile.jspa?name=cepr0)** opened **[DATAJPA-1414](https://jira.spring.io/browse/DATAJPA-1414?redirect=false)** and commented In SB 2.0.x class based projections don't work as [expected](https://github.com/spring-projects/spring-data-examples/blob/586c3d512021af382c348923a0c2851fb57ded59/jpa/example/src/main/java/example/springdata/jpa/projections/CustomerRepository.java#L58). Using them leads to the exception: `org.springframework.core.convert.ConverterNotFoundException: No converter found capable of converting from...
**[Mauro Molinari](https://jira.spring.io/secure/ViewProfile.jspa?name=mauromol)** opened **[DATAJPA-649](https://jira.spring.io/browse/DATAJPA-649?redirect=false)** and commented I have an entity: ``` @Entity public class EntityA { @Id private Long id; // getters/setters omitted } ``` and another one with a...
**[mirackle-spb](https://jira.spring.io/secure/ViewProfile.jspa?name=mirackle-spb)** opened **[DATAJPA-1686](https://jira.spring.io/browse/DATAJPA-1686?redirect=false)** and commented Looks like [DATAJPA-617](https://jira.spring.io/browse/DATAJPA-617) is not completely resolved. My app doing some data work while context initialisation is in progress. Inserting default data to database. When...
**[Jonas Tänzer](https://jira.spring.io/secure/ViewProfile.jspa?name=jtaenzer)** opened **[DATAJPA-1737](https://jira.spring.io/browse/DATAJPA-1737?redirect=false)** and commented Consider the following repository: ```java public interface BookErrorRepository extends Repository { @Query("FROM BookError b WHERE portal = :portal AND date >= :startDate AND date
**[Sviataslau Apanasionak](https://jira.spring.io/secure/ViewProfile.jspa?name=slavick)** opened **[DATAJPA-1572](https://jira.spring.io/browse/DATAJPA-1572?redirect=false)** and commented Given following entities: ```java @Entity public class User { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn private Room room; }...