当前位置: 代码迷 >> Web前端 >> 运用基于axis2的eclipse插件创建webService项目的arr文件
  详细解决方案

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

热度:272   发布时间:2012-11-21 08:23:26.0
使用基于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目录













  相关解决方案