使用基于axis2的eclipse插件创建webService项目的arr文件

利用工具生成aar文件



下面是一个超简单的service,看不懂的同学请举手
package com.demo.service.impl;

import com.demo.service.UserService;

public class UserServiceImpl implements UserService {

	@Override
	public int Login(String username, String password) {
		// TODO Auto-generated method stub
		if (username.equals("a") && password.equals("a")) {
			return 1;
		}
		return 0;
	}
}

选择服务器端项目的classes目录













猜你喜欢

转载自xiongjiajia.iteye.com/blog/1604088