📄 testhelloworld.java
字号:
package com.foshanshop.AppTest;
import com.foshanshop.ws.client.HelloWorld;
import com.foshanshop.ws.client.HelloWorldService;
public class TestHelloWorld {
public static void main(String[] args) {
try {
HelloWorldService service = new HelloWorldService();
HelloWorld helloWorld = service.getHelloWorldPort();//从服务中取得入口端点
String result = helloWorld.sayHello("张朗");
System.out.println(result);
} catch (Exception e) {
e.printStackTrace();
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -