简体   繁体   中英

Generating Apache AXIS2 WebServices from a (my)SQL schema?

Is there any tool that could be used to generate some code for apache Axis2 from a (my)sql schema. For example, the following schema:

desc name;
+-------+------------------+------+-----+---------+-------+
| Field | Type             | Null | Key | Default | Extra |
+-------+------------------+------+-----+---------+-------+
| id    | int(11)          | NO   | PRI | 0       |       |
| name  | longtext         | NO   | MUL |         |       |
+-------+------------------+------+-----+---------+-------+

would generate... :

interface Name
 {
 public long getId();
 public String getName();
 }

interface MyService
{
public Name getNameById(long id);
public List<Name> getNamesByName(String name);
}

with implementation, wsdl etc....

thanks

I have a tool that I am in the process of open sourcing which may meet your needs. Please drop me a line at tshivaraj gmail.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM