I'm using @Value annotation to inject properties and now the properties have increased and the constructor is getting really big .Is there a way to handle this problem
@Component
public class Job {
private String someProperty
@Autowired
public Job(@Value("${some.property}") String someProperty,.............){
this.someProperty = someProperty
}