⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 testhelloworld.java

📁 精通EJB3源码
💻 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 + -