Spring repository method which are returning Java 8 stream doesn't close JDBC connection

前端 未结 2 1377
梦毁少年i
梦毁少年i 2021-02-20 04:51

I have a Spring data repository:

@Repository
interface SomeRepository extends CrudRepository {
    Stream streamBy         


        
2条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-02-20 05:05

    Using @Transactional(readOnly = true) and public access modifier will solve the issue. Any other access modifier will not work.

提交回复
热议问题