Skip to content

Instantly share code, notes, and snippets.

View raulmartins's full-sized avatar

Raul Martins raulmartins

View GitHub Profile
@rponte
rponte / Cliente.java
Last active October 14, 2020 02:35
Injecting @Autowired dependencies into self-instantiated objects with Spring
@Entity
@EntityListeners(RepositoryAwareListener.class)
public class Cliente {
@Autowired // that's important!
private transient ClienteRepository repository;
// atributos da entidade
public List<Orcamento> orcamentosAPartirDeDeterminadoAno(int ano){