是否可以像在 Spring 中通过 XML 配置文件一样在 Java EE 中定义 bean。
在春天我可以参加 POJO
public class ClickCounter {
private int count;
public int getCount() {return count;}
public void setCount(int count) {this.count = count;}
}
并在 xml 中定义 bean
<bean id="clickCounter" class="com.clickcounter.ClickCounter">
</bean>