blob: a5e69db55e98cae2951f69fbc51c6813761e9948 [file] [log] [blame]
package org.apache.myfaces.springTest;
import org.springframework.context.annotation.Lazy;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Component;
@Component("springBean")
@Scope("request")
@Lazy
public class SpringBean {
private String value = "hello world from the spring bean";
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
}