package common.dataService; import org.springframework.web.bind.annotation.RequestMapping; import com.sgcc.uap.mdd.runtime.data.AbstractDataServiceController; import org.osgi.framework.Bundle; import org.springframework.stereotype.Controller; import org.osgi.framework.FrameworkUtil; /** * 概述
* TODO *

* 功能
* TODO * * @author sunyifei */ @Controller @RequestMapping("/data") public class DataServiceController extends AbstractDataServiceController { /** * @getBundle:获取Bundle * @return Bundle * @date 2019-09-15 20:35:50 * @author sunyifei */ public Bundle getBundle() { Bundle bundle = FrameworkUtil.getBundle(DataServiceController.class); return bundle; } }