Tomcat is not deploying my web project from Eclipse

后端 未结 17 1710
被撕碎了的回忆
被撕碎了的回忆 2021-02-02 09:01

I\'m developing web application. Everything was working fine till yesterday.

Something happened yesterday (no idea what exactly) and Eclipse is not deploying my applicat

相关标签:
17条回答
  • 2021-02-02 09:45

    I tried everything and nothing worked so here is another solution that finally worked (for me).

    I had to check Enable Java EE configuration under Preferences -> Maven -> Jave EE configuration

    After that you can check that more entries were added in Deployment assemblies of the project settings.

    0 讨论(0)
  • 2021-02-02 09:46

    Drop server.......... Window -> Show View -> Servers. Click right - > Delete

    Click right in the Project Run Configuration

    and add Server again......

    0 讨论(0)
  • 2021-02-02 09:46

    I had the same problem. I fixed it by makinbg the following entry in org.eclipse.wst.common.project.facet.core.xml

    <runtime name="Apache Tomcat v7.0" />
    

    Now this complete file looks like -

    <?xml version="1.0" encoding="UTF-8"?>
    <faceted-project>
        <runtime name="Apache Tomcat v7.0" />
        <fixed facet="wst.jsdt.web" />
        <installed facet="java" version="1.5" />
        <installed facet="jst.web" version="2.3" />
        <installed facet="wst.jsdt.web" version="1.0" />
    </faceted-project>
    
    0 讨论(0)
  • 2021-02-02 09:46

    Depsite the year old topic, this one seems to have the most of the answers for this problem. Just ren into it. Tried everything, starting from "cleans", ending with total ".metadata" and another server setup, and nothing worked.

    Than i remembered that a while ago i'w decided to clean up some of the "pom" warnings, and there were some suggestions on "apply to the project data". Then i started to browse the folder project, where i found the source of my headache - a file called ".tomcatplugin". After deleting it(it was the third hour of my attempts of resolving the problem) everything worked like a charm.

    0 讨论(0)
  • 2021-02-02 09:50

    I have faced this issue and I just removed the server from eclipse and re-configured it... And everything started working fine... I have faced it two three times and the same thing worked.

    0 讨论(0)
  • 2021-02-02 09:51

    SOLVED: I faced this error and i cant understand, it took 5 hours.

    Solution: project properties/Project faced/Dynamic web-module version set to 3.0

    after one week ,I got same error

    FIXED2 gwt-project-external-mode-main-main-nocache-js-not-found

    0 讨论(0)
提交回复
热议问题