Questions tagged [eclipse-wtp]

Use this tag if you have a specific question about Eclipse Web Tools Platform (WTP) features and functionality. Do not use this tag on questions just because code was written or designed with Eclipse Web Tools.

The Eclipse Web Tools Platform (WTP) project extends the Eclipse platform with tools for developing Web and Java EE applications. It includes source and graphical editors for a variety of languages, wizards and built-in applications to simplify development, and tools and APIs to support deploying, running, and testing apps.

406 questions
4
votes
1 answer

Adding WTP nature to an Eclipse project

What is the best way to add a WTP nature to my existing project so that I can associate it with my server?
Joe
  • 7,922
  • 18
  • 54
  • 83
4
votes
2 answers

How can I execute Maven goals from Eclipse without M2Eclipse?

I am using the eclipse plugin for maven to generate eclipse projects from maven pom.xml files. mvn -Dwtpversion=1.5 eclipse:eclipse This works fine and, after some experimenting with several of the 400 different archetypes available, I settled on…
robbbbbb
  • 147
  • 1
  • 8
4
votes
0 answers

Workaround for buildship composite build and eclipse-wtp

I have a root project(web-app) with 2 included builds(core and models) in my eclipse workspace and I want to start the web-app in eclipse-tomcat. settings.gradle of web-app: rootProject.name = 'web-app' includeBuild '../core' includeBuild …
soilworker
  • 1,317
  • 1
  • 15
  • 32
4
votes
1 answer

Web tool platform vs. Eclipse for Java EE

As far as I know, Web Tools Project is an add-on for a regular Eclipse, that adds all features to turn it in to Eclipse for Java EE. (please correct me if I'm wrong). So my questions are: Is it better to have 2 Eclipses (1 regular, and 1 for Java…
Victor2748
  • 4,149
  • 13
  • 52
  • 89
4
votes
1 answer

Gradle with Eclipse - resources are not filtered

I have a gradle configuration setup to filter some resources and substitute properties depending on the environment (e.g. dev, production). These are located at: src/main/resources/config.xml WebContent/WEB-INF/web.xml An example of a property…
Bob
  • 457
  • 1
  • 5
  • 15
4
votes
2 answers

creating web service client from eclipse

Hi I am new to SOAP web services and trying to create a client. I am following This tutorial but the problem which I am facing is Sometimes it generates the client stub in the form of .java files and sometimes it generates proper client with some…
ankit
  • 4,919
  • 7
  • 38
  • 63
4
votes
3 answers

Eclipse Juno with Web Tools Platform - HTTP Preview at localhost throws NoClassDefFoundError

I keep getting NoClassDefFoundError: org/eclipse/jetty/webapp/WebAppContext when trying to launch HTTP Preview in Eclipse Juno with Web Tools Platform. Steps to reproduce: Download, extract and launch Eclipse Juno Install "Eclipse Web Developer…
4
votes
2 answers

Prevent Eclipse targeting/linking files from Maven target folder

I'm developing a web application using Maven and Eclipse. I'm also using m2e plugin and its wtp connector to publish changes into the server on the fly. These plugins are creating a folder into the Maven's target folder, called…
Aritz
  • 30,971
  • 16
  • 136
  • 217
4
votes
1 answer

Jetty 9 WTP plugin

do anybody know if there is a Jetty 9 WTP plugin for Eclipse available? I can't find official one (only for Jetty 7&8) so maybe there's some 3rd party plugin? Thanks a lot.
petrushka1986
  • 1,485
  • 2
  • 11
  • 17
4
votes
1 answer

Eclipse4.2 WTP Wizard does not generate WSDL file for AXIS2- Tomcat Webservice

I've followed the steps in the tutorial to create a Webservice. Everything works fine but there is no WSDL file generated! I've a dynamic WebProject in which I create the the Webservice.... no errors but no wsdl file generated I also can't generate…
kamokaze
  • 7,142
  • 5
  • 33
  • 43
4
votes
0 answers

How do I get WTP added into FlexBuilder 3

Has anyone managed to get Eclipse WTP working underneath FlexBuilder 3, or get FlexBuilder 3 and WTP working in a vanilla Eclipse install? I had this all working fine with FlexBuidler 2 and Eclipse 3.2, but the FlexBuilder 3 I have is a standalone…
Simon
  • 78,655
  • 25
  • 88
  • 118
4
votes
1 answer

Transitive project dependencies in Eclipse WTP

I've created a bunch of projects in Eclipse 3.7.2. Let's give some of them a name: W (a Dynamic Web Project) A (some library) B (a library with lots of common stuff, that is used by other projects too) Project A depends on project B, so B is in…
Gerhard Schlager
  • 3,155
  • 1
  • 31
  • 53
3
votes
2 answers

Can the yui compressor maven plugin work with WTP?

I am using Eclipse Indigo with M2E to deploy a local web app using WTP. I am also using the yui-compressor plugin, which seems to work fine on the exploded war directory under target, but doesn't work with eclipse WTP. Is there a recommended way to…
ant-depalma
  • 2,006
  • 4
  • 26
  • 34
3
votes
1 answer

Which Eclipse wtp version should I use for maven?

I receive this error when I try to run the maven goal - mvn eclipse:eclipse -Dwtpversion=3.3.1 [ERROR] Failed to execute goal org.apache.maven.plugins:maven-eclipse-plugin:2.8 :eclipse (default-cli) on project conference-web: Unsupported WTP…
blue-sky
  • 51,962
  • 152
  • 427
  • 752
3
votes
0 answers

eclipse jsp: move .tag common imports to shared file?

I have moved multiple common <%@ tag import=... %>s from several .tag files to a shared .tag (or '.jsp') file and included that shared file in all other tag files. It works in tomcat/jetty but eclipse fails at recognizing them and reports compile…
Ali Shakiba
  • 20,549
  • 18
  • 61
  • 88