我有POJO类,90%使用服务和存储库访问,但在这10%的情况下,我希望服务具有POJO的属性,在这种情况下,自动装配失败。
在运行时,我得到" com.ripple.trading.impl.Trader中构造函数的参数0需要一个类型为' com.ripple.repositories.pojo.Wallet'的bean。无法找到。"这是Trader类:
@Service
public class Trader implements ITrade {
private Wallet wallet;
private List<Quantity> balance;
private Advice latestAdvice;
@Autowired
private OrderService orderService;
@Autowired
private HistoryService historyService;
@Autowired
private CurrencyService currencyService;
private Advice lastAdvice;
public Trader(Wallet wallet, Advice advice){
this.lastAdvice = Advice.HOLD;
this.wallet = wallet;
this.balance = WalletFetcher.getWalletByAddress(this.wallet.getAddress());
this.latestAdvice = advice;
}
}
这是钱包
@Document
public class Wallet extends BaseModel implements Serializable{
private String address;
private String encryptedSecret;
private String name;
/**
* Instantiates a new Wallet.
*
* @param address the address
* @param encryptedSecret the encrypted secret
*/
@PersistenceConstructor
public Wallet(String address, String encryptedSecret, String name) {
this.address = address;
this.encryptedSecret = encryptedSecret;
this.name = name;
}
/**
* Gets address.
*
* @return the address
*/
public String getAddress() {
return address;
}
/**
* Sets address.
*
* @param address the address
*/
public void setAddress(String address) {
this.address = address;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
/**
* Gets encrypted secret.
*
* @return the encrypted secret
*/
public String getEncryptedSecret() {
return encryptedSecret;
}
/**
* Sets encrypted secret.
*
* @param encryptedSecret the encrypted secret
*/
public void setEncryptedSecret(String encryptedSecret) {
this.encryptedSecret = encryptedSecret;
}
}
这是我的主要应用
@EnableOAuth2Sso
@ComponentScan
@EnableMongoRepositories(value = "com.ripple.repositories.mongo")
@SpringBootApplication(exclude = {SecurityAutoConfiguration.class})
public class RippleSpringApplication extends SpringBootServletInitializer {
@Override
protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
return application.sources(RippleSpringApplication.class);
}
/**
* The entry point of application.
*
* @param args the input arguments
*/
public static void main(String[] args) {
SpringApplication.run(RippleSpringApplication.class, args);
}
}
我的猜测是自动装配,可能会将应用程序分解成较小的部分直到它再次运行。这是以前发生的一个问题,并且重构修复它,但其背后的原因,为什么修复它,它是正确的解决方案。这就是我现在所做的。
我的应用程序类位于根包中,因此ComponentScan不应该成为问题。
答案 0 :(得分:1)
您的wallet
课程不是由Spring管理的,它不是@Component
能够通过组件扫描获取的,它没有被定义为{{1}在您的配置中。
此外,Wallet类是有状态的,实际上你不应该让spring管理这个类,而是将它作为参数传递给所需的Beans。
答案 1 :(得分:1)
类Wallet
不是Spring配置的bean。它只是一个类(spring-data-mongodb document
)。
如果你的Spring组件有一个构造函数,Spring会自动将这个构造函数视为自动装配,并会在调用该构造函数时查找与构造函数参数类型相匹配的bean。
这就是您收到该错误的原因。
如果您希望Trader
成为&#34;服务&#34;考虑不要将Wallet
和Advice
字段用于它,因为这实际上将状态引入应该是无状态的状态。如果Trader
中的方法对Wallet
和Advice
执行某些操作,请考虑将这些方法作为参数传递给这些方法。类似的东西:
@Service
public class Trader {
/// ... your autowired dependecies
public BigDecimal getBalance(Wallet wallet) {
return WalletFetcher.getWalletByAddress(wallet.getAddress());
}
}