Can not deploy web module to applications of weblogic in eclipse.

来源:互联网 发布:python ui选择 编辑:程序博客网 时间:2024/05/22 03:49

There is a file called ".mymetadata",the content as below:

the web pages are in the src/web,not the default WebRoot.

so eclipse can not find the sources to copy.okay, change it,the web module will be deployed successful.

 

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project-module
  3.   type="WEB"
  4.   name="test"
  5.   id="myeclipse.1225948468964"
  6.   context-root="/test"
  7.   j2ee-spec="1.4"
  8.   archive="test.war">
  9.   <attributes>
  10.     <attribute name="webrootdir" value="src/web" />
  11.   </attributes>
  12. </project-module>
原创粉丝点击