wsgen' Class not found'

时间:2014-11-05 20:27:12

标签: java jax-ws wsgen

这是我的java项目的设置

enter image description here

我正在尝试通过cmd运行wsgen:

wsgen -keep -cp . com.library.webservice.HelloWorldImplementation

但我收到了错误

Class not found: "com.library.webservice.HelloWorldImplementation"

此外,该命令从C:\ ... \WebServices Test\src

运行

知道我做错了吗?

1 个答案:

答案 0 :(得分:5)

C:\ ... \WebServices Test\src包含Java源文件,而不是类文件。通过-cp指定的类路径应指向包含已编译类的目录,通常是bin文件夹。因此,您应该从该目录运行命令。