Spring-MVCの散歩道 > Spring Boot の小径 > 第4歩 Spring Boot 匍匐前進 > コンポーネントスキャン
|
package jp.dip.arimodoki.model; import org.springframework.stereotype.Component; @Component public class FormHello implements FormHelloIf { private String discription = ""; public String getDiscription() { return discription; } public void setDiscription(String discription) { this.discription = discription; } } |