这可能是一个简单的,但我似乎无法确定下来。
我有一个包含 2 个字段、文本和文件的简单表单,即
<form>
<input type="text" name="textfield">
<input type="file" name="filefield">
</form>
捕获它的 CXF 方法声明是什么?
谢谢!
您可以像这样创建简单的 Web 服务:
@WebService
public class SimpleWs
{
@WebMethod
public String upload(String textfield, byte[] filefield) {
// ...
return "OK";
}
}
并按照CXF 网站上的这些说明进行操作。