我使用@Value註釋注入的屬性和現在的屬性有所增加,構造越來越真大。是有辦法解決這個問題使用Spring @Value標註爲多個屬性
@Component
public class Job {
private String someProperty
@Autowired
public Job(@Value("${some.property}") String someProperty,.............){
this.someProperty = someProperty
}
編寫單元測試是很容易。如果我使用的構造函數。我可以做'工作=新工作(「fakeSomeProperty」);'.. – user1178585