我是靠谱客的博主 无限短靴,最近开发中收集的这篇文章主要介绍myeclipse中点击web选项时出现"the currently displayed page contains invalid values "myeclipse中点击web选项时出现"the currently displayed page contains invalid values "某一天把项目checkout下来发现部署的时候选不到该项目,右键项目点击web出现"the currently displayed page contains invalid va,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

myeclipse中点击web选项时出现"the currently displayed page contains invalid values "

原创  2017年03月21日 11:25:43
  • 5027

某一天把项目checkout下来发现部署的时候选不到该项目,右键项目点击web出现

"the currently displayed page contains invalid values"


解决办法是:

在GatewayRoute(项目名).settingsorg.eclipse.wst.common.component

如果没有这个文件则创建org.eclipse.wst.common.component

java项目转web项目的时候没有Dynamic Web Module

原创  2016年12月10日 10:54:29
  • 2696

1.打开。setting里的org.eclipst.wst.commom.project.facets.core.xml文件 
2.改成如下内容:

<?xml version="1.0" encoding="UTF-8"?>

  <fixed facet="wst.jsdt.web"/>
  <installed facet="wst.jsdt.web" version="1.0"/>
  <installed facet="jst.web" version="3.0"/>
  <installed facet="java" version="1.7"/>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

3.重启eclipse



添加内容:

<?xml version="1.0" encoding="UTF-8"?><project-modules id="moduleCoreId" project-version="1.5.0">
    <wb-module deploy-name="GatewayRoute(项目名)">
        <wb-resource deploy-path="/" source-path="/WebRoot" tag="defaultRootSource"/>
        <wb-resource deploy-path="/WEB-INF/classes" source-path="/src"/>
        <wb-resource deploy-path="/WEB-INF/classes" source-path="/config"/>
        <property name="java-output-path" value="/GatewayRoute(项目名)/WebRoot/WEB-INF/classes"/>
        <property name="me-merge-utility-modules" value="true"/>
        <property name="context-root" value="/GatewayRoute(项目名)"/>
    </wb-module>
</project-modules>


最后

以上就是无限短靴为你收集整理的myeclipse中点击web选项时出现"the currently displayed page contains invalid values "myeclipse中点击web选项时出现"the currently displayed page contains invalid values "某一天把项目checkout下来发现部署的时候选不到该项目,右键项目点击web出现"the currently displayed page contains invalid va的全部内容,希望文章能够帮你解决myeclipse中点击web选项时出现"the currently displayed page contains invalid values "myeclipse中点击web选项时出现"the currently displayed page contains invalid values "某一天把项目checkout下来发现部署的时候选不到该项目,右键项目点击web出现"the currently displayed page contains invalid va所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(50)

评论列表共有 0 条评论

立即
投稿
返回
顶部