- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我创建了一个 EJB 项目,其中包含以下 java 文件。它不会在 JBoss 5.1.0 上部署,并会输出部署错误,该错误附加在下面的 java 代码之后。但相同的 jar 部署在 JBoss AS 7.1 上。为什么该 jar 没有部署在 JBoss 5.1 上?
请注意,BeanA的bean实现具有BeanB的本地接口(interface),而BeanB的bean实现具有BeanA的本地接口(interface),因此这是一个循环。
BeanALocalInterface.java
package com.xyz;
import javax.ejb.Local;
@Local
public interface BeanALocalInterface {
public void executeLocal();
}
BeanA.java
package com.xyz;
import javax.ejb.EJB;
import javax.ejb.Stateless;
@Stateless
public class BeanA implements BeanALocalInterface {
@EJB private BeanBLocalInterface beanBLocalInterface;
public BeanA() {}
public void executeLocal() {System.out.println("executing in BeanA"); beanBLocalInterface.executeLocal();}
public void executeRemote() {System.out.println("executing in BeanA"); }
}
BeanBLocalInterface.java
package com.xyz;
import javax.ejb.Local;
@Local
public interface BeanBLocalInterface {
public void executeLocal();
}
BeanB.java
package com.xyz;
import javax.ejb.EJB;
import javax.ejb.Stateless;
@Stateless
public class BeanB implements BeanBLocalInterface {
@EJB private BeanALocalInterface localInterface;
public BeanB() { }
public void executeLocal() { localInterface.executeLocal(); }
public void executeRemote() { System.out.println("executing in BeanB");}
}
在 JBOSS 5.1.0 中部署 CyclicalBeans.jar 时的错误日志
11:59:31,557 INFO [JBossASKernel] Created KernelDeployment for: CyclicalBeans.jar
11:59:31,557 INFO [JBossASKernel] installing bean: jboss.j2ee:jar=CyclicalBeans.jar,name=BeanA,service=EJB3
11:59:31,557 INFO [JBossASKernel] with dependencies:
11:59:31,557 INFO [JBossASKernel] and demands:
11:59:31,573 INFO [JBossASKernel] jndi:BeanB/local-com.xyz.BeanBLocalInterface
11:59:31,573 INFO [JBossASKernel] jboss.ejb:service=EJBTimerService
11:59:31,573 INFO [JBossASKernel] and supplies:
11:59:31,573 INFO [JBossASKernel] jndi:BeanA/local-com.xyz.BeanALocalInterface
11:59:31,588 INFO [JBossASKernel] jndi:BeanA/local
11:59:31,588 INFO [JBossASKernel] Class:com.xyz.BeanARemoteInterface
11:59:31,588 INFO [JBossASKernel] jndi:BeanA/remote-com.xyz.BeanARemoteInterface
11:59:31,588 INFO [JBossASKernel] Class:com.xyz.BeanALocalInterface
11:59:31,604 INFO [JBossASKernel] jndi:BeanA/remote
11:59:31,604 INFO [JBossASKernel] Added bean(jboss.j2ee:jar=CyclicalBeans.jar,name=BeanA,service=EJB3) to KernelDeployment of: CyclicalBeans.jar
11:59:31,604 INFO [JBossASKernel] installing bean: jboss.j2ee:jar=CyclicalBeans.jar,name=BeanB,service=EJB3
11:59:31,619 INFO [JBossASKernel] with dependencies:
11:59:31,619 INFO [JBossASKernel] and demands:
11:59:31,619 INFO [JBossASKernel] jboss.ejb:service=EJBTimerService
11:59:31,635 INFO [JBossASKernel] jndi:BeanA/local-com.xyz.BeanALocalInterface
11:59:31,635 INFO [JBossASKernel] and supplies:
11:59:31,635 INFO [JBossASKernel] Class:com.xyz.BeanBLocalInterface
11:59:31,635 INFO [JBossASKernel] jndi:BeanB/local-com.xyz.BeanBLocalInterface
11:59:31,651 INFO [JBossASKernel] jndi:BeanB/local
11:59:31,651 INFO [JBossASKernel] jndi:BeanB/remote
11:59:31,666 INFO [JBossASKernel] Added bean(jboss.j2ee:jar=CyclicalBeans.jar,name=BeanB,service=EJB3) to KernelDeployment of: CyclicalBeans.jar
11:59:31,666 INFO [EJB3EndpointDeployer] Deploy AbstractBeanMetaData@68f7b23c{name=jboss.j2ee:jar=CyclicalBeans.jar,name=BeanA,service=EJB3_endpoint bean=org.jboss.ejb3.endpoint.deployers.impl.EndpointImpl properties=[container] constructor=null autowireCandidate=true}
11:59:31,666 INFO [EJB3EndpointDeployer] Deploy AbstractBeanMetaData@3b870737{name=jboss.j2ee:jar=CyclicalBeans.jar,name=BeanB,service=EJB3_endpoint bean=org.jboss.ejb3.endpoint.deployers.impl.EndpointImpl properties=[container] constructor=null autowireCandidate=true}
11:59:31,744 WARN [HDScanner] Failed to process changes
org.jboss.deployers.client.spi.IncompleteDeploymentException: Summary of incomplete deployments (SEE PREVIOUS ERRORS FOR DETAILS):
DEPLOYMENTS MISSING DEPENDENCIES:
Deployment "jboss.j2ee:jar=CyclicalBeans.jar,name=BeanA,service=EJB3" is missing the following dependencies:
Dependency "<UNKNOWN jboss.j2ee:jar=CyclicalBeans.jar,name=BeanA,service=EJB3>" (should be in state "Described", but is actually in state "** UNRESOLVED Demands 'jndi:BeanB/local-com.xyz.BeanBLocalInterface' **")
Deployment "jboss.j2ee:jar=CyclicalBeans.jar,name=BeanA,service=EJB3_endpoint" is missing the following dependencies:
Dependency "jboss.j2ee:jar=CyclicalBeans.jar,name=BeanA,service=EJB3" (should be in state "Configured", but is actually in state "PreInstall")
Deployment "jboss.j2ee:jar=CyclicalBeans.jar,name=BeanB,service=EJB3" is missing the following dependencies:
Dependency "<UNKNOWN jboss.j2ee:jar=CyclicalBeans.jar,name=BeanB,service=EJB3>" (should be in state "Described", but is actually in state "** UNRESOLVED Demands 'jndi:BeanA/local-com.xyz.BeanALocalInterface' **")
Deployment "jboss.j2ee:jar=CyclicalBeans.jar,name=BeanB,service=EJB3_endpoint" is missing the following dependencies:
Dependency "jboss.j2ee:jar=CyclicalBeans.jar,name=BeanB,service=EJB3" (should be in state "Configured", but is actually in state "PreInstall")
DEPLOYMENTS IN ERROR:
Deployment "<UNKNOWN jboss.j2ee:jar=CyclicalBeans.jar,name=BeanA,service=EJB3>" is in error due to the following reason(s): ** UNRESOLVED Demands 'jndi:BeanB/local-com.xyz.BeanBLocalInterface' **
Deployment "<UNKNOWN jboss.j2ee:jar=CyclicalBeans.jar,name=BeanB,service=EJB3>" is in error due to the following reason(s): ** UNRESOLVED Demands 'jndi:BeanA/local-com.xyz.BeanALocalInterface' **
at org.jboss.deployers.plugins.deployers.DeployersImpl.checkComplete(DeployersImpl.java:993)
at org.jboss.deployers.plugins.deployers.DeployersImpl.checkComplete(DeployersImpl.java:939)
at org.jboss.deployers.plugins.main.MainDeployerImpl.checkComplete(MainDeployerImpl.java:873)
at org.jboss.system.server.profileservice.repository.MainDeployerAdapter.checkComplete(MainDeployerAdapter.java:128)
at org.jboss.system.server.profileservice.hotdeploy.HDScanner.scan(HDScanner.java:369)
at org.jboss.system.server.profileservice.hotdeploy.HDScanner.run(HDScanner.java:255)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:439)
at java.util.concurrent.FutureTask$Sync.innerRunAndReset(FutureTask.java:317)
at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:150)
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$101(ScheduledThreadPoolExecutor.java:98)
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.runPeriodic(ScheduledThreadPoolExecutor.java:180)
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:204)
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:895)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:918)
at java.lang.Thread.run(Thread.java:662)
最佳答案
注入(inject) Bean 上的 @IgnoreDependency 注释将解决此问题。请修改BeanA.java和BeanB.java如下:
BeanA.java
package com.xyz;
import javax.ejb.EJB;
import javax.ejb.Stateless;
import org.jboss.ejb3.annotation.IgnoreDependency;
@Stateless
public class BeanA implements BeanALocalInterface {
@IgnoreDependency
@EJB(name="ejb/BeanBLocalInterface") private BeanBLocalInterface beanBLocalInterface;
public BeanA() {}
public void executeLocal() {System.out.println("executing in BeanA"); beanBLocalInterface.executeLocal();}
public void executeRemote() {System.out.println("executing in BeanA"); }
}
BeanB.java
package com.xyz;
import javax.ejb.EJB;
import javax.ejb.Stateless;
import org.jboss.ejb3.annotation.IgnoreDependency;
@Stateless
public class BeanB implements BeanBLocalInterface {
@IgnoreDependency
@EJB(name="ejb/BeanALocalInterface ") private BeanALocalInterface localInterface;
public BeanB() { }
public void executeLocal() { localInterface.executeLocal(); }
public void executeRemote() { System.out.println("executing in BeanB");}
}
我从以下问题解答链接中得出了我的解决方案。 answer link
关于java - ejb 存档 jar 中的循环依赖无状态 bean 未部署在 JBoss 5.1.0 上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27813956/
有什么区别 和 您能解释一下这两者之间有什么区别吗? 最佳答案 它是一个 XML 命名空间,用于分隔可能存在冲突的元素名称,因此没有真正的区别。 XML Namespaces 关于java -
我刚刚浏览了两个 Web 应用程序,在两个项目的“applicationContext.xml”文件中都有一个标记 ... 另一个是 ... 谁能给我解释一下有什么区别吗? 最佳答案 没有语
我一直在尝试了解 WebSphere Commerce 中的 Java bean,但我真的很困惑。请帮帮我。我需要知道: What is the difference between EntityBe
自从我们更新到 grails 2.0.1(从 2.0.0 开始)以来,通过 bean 字段显示的所有 bean 都错误地显示为“withBean”字段的第一个属性。在我下面发布的示例中,所有 [fir
我有一个 bean,我将另一个 beanlist 放入其中,并且我想访问该内部 bean。 我的第一个 Bean 是: public class FirstDTO { private String F
我正在尝试将 CSS 和 JS 添加到 spring MVC 项目中的 JSP 页面,以便我在 dispatcher-servlet.xml 中包含了 js/css 文件夹的引用,如下所示:
当我将请求传递给 RestController 时,出现以下错误。 org.springframework.beans.factory.xml.XmlBeanDefinitionStoreExcept
我看到很多示例将 bean 标记为实体 bean (@Entity) 和命名 bean (CDI),以避免创建 2 个类(托管 bean 和实体 bean)并利用 Bean 验证以便可以执行验证在客户
在我的理解中, session 总是意味着有状态。考虑 servlet session 对象, 想想 cookie。如果 session 是无状态的,我认为我们根本不需要 session 。 在jee
我完全是Spring框架的初学者。我当时正在玩一个创建对象实例的示例。因此需要您的帮助! 看看这个例子: MainApp.java: import org.springframework.contex
这个问题在这里已经有了答案: What is a JavaBean exactly? (23 个回答) 关闭 7 年前。 我已经阅读了有关 EJB、Java Beans 的内容,但是我仍然对“bea
我刚开始使用 Spring-Framework,实际上我正在使用 spring-boot 库。我有以下问题: 我知道在 @Configuration 类中使用 @Bean 注册的 bean 默认是单例
我对下面提到的场景中使用Spring Framework时会创建的实例数量有疑问: bean配置是这样的 or 默认情况下,bean "a"有 singleton scope .所以
在我的 Spring-Module.xml 中,我有两个 bean: ... ... 我像这样实例化我的类: Applicat
@Autowired private Map departments; 我的 spring 配置文件 只要使用 @Autowired 需要日期,它就可以正常工作 同样, 如何使用没有属性
我已经为 ComboBox 设置了 ContainerDataSource this.comboBox.setContainerDataSource(container)。这个容器是一个 BeanIt
为了支持流畅的编程风格,我最近修改了我们的 Java Beans setter 方法以返回 Bean 类。但是现在 Java Beans Activation Framework (rel 1.1)
有人可以告诉我在我的 ApplicationContext 中我必须使用 beans:bean 而不是 bean 的什么以及如何修复它。
我有如下配置: batch:job id="reconciliationJob" job-repository="jobRepository" restartable="true" 在应用程序上下文启
我已经为 Test_flow 创建了简单的测试套件,但是当我尝试运行该流程时出现错误。 java.lang.RuntimeException: org.mule.api.config.Configur
我是一名优秀的程序员,十分优秀!