用JBuilder开发web service的方法

来源:互联网 发布:知道ip查找域名 编辑:程序博客网 时间:2024/05/17 18:00

用JBuilder开发web service的方法:
1.new -> project
2.new -> Web -> Web Application(Del)
3.at Del's Root directory, new -> Jsp
 select Generate sample bean(Jsp1Bean) or not.
 you can create lots of javabean.
 which function you want to issue,
 set it public property, otherwise set is private.
 for example:

  public String PubFun(String str){
    return str;
  }
  private String PriFun(String str){
    str = "Hi " + str;
    return str;
  }
  that means you want to issue or release PubFun() and not want to release PriFun().
4.new -> Web Services -> Web Services Configuration
5.new -> Web Services -> Export as a Web Service
 'Choose interface or class to export'
 search Interface or class, between Browse & Search Card
 select Search Card.
 in the blank: Search for
 you write: Jsp1Bean
 ok,next, you can alter the service address.
http://localhost:8080/Del/services/Jsp1Bean

原创粉丝点击