I am migrating an old JSF application to newer versions. I have the problem with the lazyDataModel of Primefaces
@Configurable
public class PerfilSeleccionLazyDataModel extends LazyDataModel<Perfil> {
@Autowired
private transient PerfilService perfilService;
Now these classes do not inject services and are null
My new project is with Spring Boot, JoinFaces 4 and Spring 5.
Can someone tell me what new strategy I should use or if I should add some extra confirmation, so that my services are injected well?