For the record, this error is caused by running mvn jetty:run-war from the top-level directory of a modular project, rather than your web project directory.
http://markmail.org/message/ubjlpzebsgv5idxz
Subscribe to:
Post Comments (Atom)
This is a simple collection of coding headaches and their solutions, for the future reference of myself and others. They are primarily JEE-related.
2 comments:
This problem also occurs when your web project doesn't contain a java source folder. Maven then generates no classes directory and Jetty won't start.
I got this when running mvn jetty:run correctly, but under my postgres user.
Post a Comment