我在我的应用程序中使用了@Singleton
ejb,它工作正常,但我想要一个ejb单例的重置功能,我没有得到如何实现它
@Singleton
@Stateless
public class TestImpl implements TestLocal{
private Datasource source;
@Override
public Datasource getDataSource(){
return source;
}
//I want reset method which will rest my datasource object
}