2010-08-05 112 views
0

当我启动我的Tomcat服务器时,出现了下面列出的错误消息所描述的问题。如何在Eclipse中配置服务器?

我该如何解决这个问题?

Aug 5, 2010 10:25:13 AM org.apache.tomcat.util.digester.SetPropertiesRule begin 
WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.j2ee.server:openbravo' did not find a matching property. 
Aug 5, 2010 10:25:13 AM org.apache.catalina.core.AprLifecycleListener init 
INFO: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: /opt/jdk1.6.0_16/jre/lib/amd64/server:/opt/jdk1.6.0_16/jre/lib/amd64:/opt/jdk1.6.0_16/jre/../lib/amd64:/usr/lib64/xulrunner-1.9.1:/usr/java/packages/lib/amd64:/lib:/usr/lib 
Aug 5, 2010 10:25:13 AM org.apache.coyote.http11.Http11Protocol init 
INFO: Initializing Coyote HTTP/1.1 on http-8080 

与此异常也:

[main] WARN org.jboss.seam.security.permission.PersistentPermissionResolver - no permission store available - please install a PermissionStore with the name 'org.jboss.seam.security.jpaPermissionStore' if persistent permissions are required. 
Aug 5, 2010 10:25:40 AM org.apache.catalina.core.StandardContext listenerStart 
SEVERE: Exception sending context initialized event to listener instance of class org.openbravo.dal.core.DalContextListener 
org.openbravo.base.exception.OBException: org.openbravo.base.exception.OBException: Not able to create domain type org.openbravo.userinterface.selector.model.domaintype.ModelElementDomainType for reference org.openbravo.base.model.Reference [id: 45B39681AFBC4808A64C9B776A290BA4, name: OBUISEL_SelectorFieldPropertySelector] 
+0

你使用的是什么确切的Eclipse,WTP和tomcat版本? – VonC 2010-08-05 05:45:36

+0

我正在使用eclipse伽利略 – chandrasekhar 2010-08-05 07:37:00

回答

1

警告:[SetPropertiesRule] {服务器/服务/发动机/主机/上下文}设置属性 '源' 到“org.eclipse.jst。 j2ee.server:openbravo'没有找到匹配的属性。

这不会造成伤害。 Eclipse只是为Tomcat的<Context>元素添加一个额外的属性,以便能够将部署的webapp与特定的项目相关联。 Tomcat只是抽搐,因为它不会将其识别为预定义的<Context>属性之一。然而,它试图对最终用户实际犯下错字等情况有所帮助。只要忽略它。导出Web应用程序并将其部署到实际的生产服务器时,您不会看到它。

[主] WARN org.jboss.seam.security.permission.PersistentPermissionResolver - 没有可用的许可店 - 请名为安装PermissionStore“org.jboss.seam.security.jpaPermissionStore”如果需要持久的权限。 2010年8月5日上午10时25分40秒org.apache.catalina.core.StandardContext listenerStart

我没有接缝的家伙,但Google得知我说,你可能会得到这样当配置您的JPA使用JTA交易并且未在Seam的components.xml中配置<security:jpa-permission-store>。要解决此问题,请添加权限存储或将JPA配置为仅使用资源本地事务。

严重:异常发送上下文初始化事件监听器类org.openbravo.dal.core.DalContextListener的实例

org.openbravo.base.exception.OBException:org.openbravo.base.exception.OBException :无法为参考org.openbravo.base.model.Reference创建域类型org.openbravo.userinterface.selector.model.domaintype.ModelElementDomainType。[ID:45B39681AFBC4808A64C9B776A290BA4,名称:OBUISEL_SelectorFieldPropertySelector]

这是一个自定义/包装的异常,没有给我很多帮助消失。我们对异常的根本原因更感兴趣。请进一步查看堆栈跟踪根本原因此异常的一部分。它会告诉有关问题的:)


尽管如此,没有就相关的文字问题“如何配置服务器在Eclipse?”的问题的,嗯,根本原因。你似乎已经成功地完成了它。第一个问题是可以忽略的。第二个问题与Seam/JPA有关。第三个问题与Openbravo ERP有关。你可能会考虑询问单独的关于他们的问题来解决这个问题。

相关问题