Jetty 8.1.1.v20120215 in Eclipse with webapp (JSF + Maven)

前端 未结 4 1670
孤城傲影
孤城傲影 2021-02-13 18:46

I am trying to run my webapp (using JSf) Jetty 8.1.1.v20120215 in Eclipse. I downloade Jettey Adaptor for Jetty and then added Jetty Server 8.1 in Eclipse. Then I stared my weba

4条回答
  •  遇见更好的自我
    2021-02-13 19:03

    For some reason the jetty launcher used in eclipse ignores libraries in lib/subfolders do either, copy lib/annotations libraries to the lib/ folder or create symbolic links (linux or mac)

    $ cd folder_to_jetty_installation/lib
    $ for i in */*.jar; do; ln -s $i .; done
    

提交回复
热议问题