首页>代码>spring实现忽略禁用@Required注解的实例>/spring-skip-disable-@required-annotation-example/src/main/java/com/memorynotfound/spring/core/required/StarWars.java
package com.memorynotfound.spring.core.required; import org.springframework.beans.factory.annotation.Required; public class StarWars { private TheForce theForce; public TheForce getTheForce() { return theForce; } @Required public void setTheForce(TheForce theForce) { this.theForce = theForce; } }