0

是否可以像在 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>
4

1 回答 1

0

是的,只需创建一个 emtpy beans.xml,如:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="
        http://java.sun.com/xml/ns/javaee 
        http://java.sun.com/xml/ns/javaee/beans_1_0.xsd">
</beans>

然后创建你的bean:

import javax.ejb.Singleton;
@Singleton
public class MyBean{
} 
于 2013-03-05T14:19:25.650 回答