The Demo of the Service API
package com.javabook.classloader.service.api;/*** @author Summer Lu* @email summer.lu@software.dell.com* @date 2014-8-25**/public interface ISimpleService {/*** @param expression* @return*/public String calculate(String expression);}
