`
yodg2gg
  • 浏览: 10631 次
  • 性别: Icon_minigender_1
  • 来自: 广州
文章分类
社区版块
存档分类
最新评论

警告: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'so

 
阅读更多
在网上查了一下,很多人也碰到这个问题

转一下别人的解释:

有的说将Tomcat的版本换成6.0.14就可以了;还有的说在建立Dynamic Web Project时把"Dynamic Web Module"选项后面的版本号由2.5改成2.4也行。不过这些回答好像都不能真正地解决问题。


出现SetPropertiesRule警告的原因是因为Tomcat在server.xml的Context节点中不支持source属性:<Context docBase="…" path="/…" source="org.eclipse.jst.j2ee.server:…"/>

解决方法是在Servers视图里双击创建的server,然后在其server的配置界面中选中"Publish module contexts to separate XML files"选项。


具体“Publish module contexts to separate XML files”是什么意思,

请看Tomcat Publishing Options介绍:


Two new options which affect publishing are now available in the Server Options section of the Tomcat server editor. The Tomcat server must be 5.0.x or later for these options to be enabled. The Serve modules without publishing option does what it says. Web content will be served directly from the "WebContent" folder of the Dynamic Web Project. A customized context is used to make the project's dependencies available in the Web application's classloader. The Publish module contexts to separate XML files option will publish contexts using the preferred method of separate XML files under the "conf/Catalina/localhost" directory, rather than keeping them in the "server.xml" file. A couple of improvements for this option are noted in Bugs 180931 and 180936.

关于解决方法,再详细说明一下:

Servers视图的打开方法:Window--Show View-other..--Servers

双击Server:就是双击服务器名,我的服务器名为:Tomcat v6.0 Server at localhost 即双击它,进入

server的配置界面: 选中"Publish module contexts to separate XML files"选项
分享到:
评论

相关推荐

    警告: [SetPropertiesRule]

    这个是教你怎么处理这个错误的一个解说。我的问题解决了。 警告: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source'

    java基础知识,基础知识

    警告: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.jee.server:jwgl' did not find a matching property. 3月 17, 2019 10:51:41 上午 org.apache....

    解决eclpise中启动tomcat6出现红色警告的问题

    警告: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.jee.server:TestTomcat6.0.16' did not find a matching property. ``` 此外,还会收到关于Apache...

    maven tomcat

    [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property'source'to'org.eclipse.jst.j2ee.server:mavenWeb'did not find a matching property. ``` - 双击新添加的Server,进入配置界面。 -...

    struts-2.3.8+spring-3.2.1+mybatis-3.2.2架构

    WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.jee.server:autofactory' did not find a matching property. 九月 18, 2013 11:39:02 上午 org...

    commons-digester.jar

    5. **SetPropertiesRule**: 此Rule用于将XML元素的属性值设置到Java对象的相应属性上。它简化了从XML到Java对象的数据绑定过程。 6. ** Digester Rules Pipeline**: Digester的工作方式就像一个管道,每个XML元素...

    digester解析xml

    &lt;server port="8080" host="localhost"/&gt; &lt;/config&gt; ``` 我们可以使用Digester创建对应的Java对象: ```java Digester digester = new Digester(); digester.addObjectCreate("config", "com.example.Config"); ...

    Java_XML解析之Digester的使用

    Digester支持多种规则,例如`ObjectCreateRule`用于创建新对象,`SetPropertiesRule`用于设置对象属性,`SetNextRule`用于控制对象间的链接,还有其他如`CallMethodRule`用于调用对象的方法等。 通过组合不同的...

    解析Tomcat的启动脚本–catalina.bat

    概述 Tomcat 的三个最重要的启动脚本: startup.bat catalina.bat setclasspath.bat 上一篇咱们分析了 startup.bat 脚本 这一篇咱们来分析 catalina.bat 脚本. 至于 setclasspath.bat 这个脚本, 相信看完这一篇, ...

    digester jar包大全

    例如,如果XML中有`&lt;server&gt;&lt;database&gt;`这样的结构,我们可以设置规则,让Digester在遇到`&lt;database&gt;`元素时创建一个新的数据库对象,并将其添加到服务器对象中。 Digester的核心概念包括: 1. **Rules**: 规则...

    利用commons-digester解析xml

    在实际应用中,我们通常会定义一些规则,比如 `createRule` 和 `setPropertiesRule`,来创建对象和设置对象属性。例如: ```java Digester digester = new Digester(); digester.addObjectCreate("root/element", ...

    深入struts1核心思想.doc

    Digester使用各种规则如`SetPropertiesRule`,`SetNextRule`等来处理XML元素,确保对象的正确构建和关联。 2. **ActionServlet**: ActionServlet是Struts1的核心组件,负责处理HTTP请求。在初始化阶段,Action...

    浅析Digester

    - 支持多种规则类型,如CallMethodRule、SetPropertiesRule等。 - 可以处理复杂的XML结构,通过堆栈管理维持对象间的层级关系。 **局限**: - 配置规则相对复杂,对初学者不友好。 - 对XML Schema支持有限,更适用...

    digester使用

    例如,`CallMethodRule`用于在匹配到XML元素时调用指定对象的方法,而`SetPropertiesRule`则用于设置对象的属性值。 **4. 常见应用** - **配置文件解析**:在很多框架中,如Spring,都使用类似Digester的方式解析...

    commons-digester.jar下载

    6. **SetPropertiesRule**: 自动将XML元素的属性值设置到匹配的对象上,减少了手动设置属性的需要。 **使用场景** 1. **配置文件解析**: Commons-Digester常用于解析XML配置文件,如Spring框架中的bean配置或Struts...

    Digester java解析xml

    有多种类型的规则,如 `CallMethodRule` 调用对象的方法,`CreateObjectRule` 创建新对象,`SetPropertiesRule` 设置对象属性等。规则通常基于XPath表达式来匹配XML元素。 3. **链式解析(Rule Chaining)**: ...

    Commons-digesterXML解析Demo

    例如,可以使用`CallMethodRule`来调用对象的方法,或者使用`SetPropertiesRule`来根据XML元素的属性设置对象的属性。规则通常与XML元素的路径(XPath)关联,例如`/root/element`。 4. **XML到Java对象的映射** ...

Global site tag (gtag.js) - Google Analytics