My application is developed with Spring Boot and Ext Js (Sencha). Currently, one of the dropdowns is displaying only 20 items, although there should be 21. I have enabled SQL logs and noticed that the query executes with ‘limit ?’ at the end. Despite removing every instance of the Repo usage, the query still executes with the limit.
//@Repository
public interface DeptCategory extends BaseJpaRepositoy<Category,Integer>{
}
Commenting out the @Repository annotation and renaming the interface to a random name seems to work. However, it only stops working when both lines in the interface are commented out.
//@Repository
//public interface DeptCategory extends BaseJpaRepositoy<Category,Integer>{
//}
I completely new Ext JS, did I have to check something from Ext JS for this concern?