rcbandit111

Results 25 comments of rcbandit111

Hello @tkaczmarzyk Here it is: ``` 11:31:42.823 [main] ERROR SpringApplication[reportFailure:837] - Application run failed org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'customerController' defined in URL [jar:file:/opt/datalis/skyshop-admin-be-1.0.jar!/BOOT-INF/classes!/org/engine/admin/be/rest/customer/CustomerController.class]: Unsatisfied dependency expressed through constructor...

Hello @tkaczmarzyk. Thank you for the response. Adding `@Spec(path = "type", spec = In.class, constVal = "CustomerUser")` solves the issue. But it's a huge security door. Someone can send `type`...

I tried this: ``` @Override public Page getAllBySpecification(Specification specification, Pageable pageable) { specification.and(specification, new CriteriaBuilder.In("type", List.of("CustomerUser")); return this.dao.findAll(specification, pageable); } ``` For this code `new CriteriaBuilder.In("type", List.of("CustomerUser"));` I get `'In'...

@tkaczmarzyk I have a question: Can you extend `constVal` to accept a list? I would like to send several values as a `constVal`?

Kind remind guys. I will appreciate it if someone write me some configuration steps before official documentation is ready.

@jgrandja Thank you for the response. I will wait further information.

@DawnSouther Can you propose some quick code fix, please? I'm blocked from this issue.