xml api 추가
parent
50904c868d
commit
dbfc2ad825
@ -0,0 +1,14 @@
|
|||||||
|
package cokr.xit.interfaces.lvis.web;
|
||||||
|
|
||||||
|
import org.springframework.http.MediaType;
|
||||||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
|
||||||
|
/**자망 연계 서비스를 REST API로 제공하는 웹 콘트롤러<br />
|
||||||
|
* 서비스 실행은 다음과 같이 한다.
|
||||||
|
* <pre><code>http(s)://{호스트}/{웹컨텍스트}/intf/lvis/xml/{서비스별 경로}</code></pre>
|
||||||
|
* @author mjkhan
|
||||||
|
*/
|
||||||
|
@RestController("lvisXmlApi")
|
||||||
|
@RequestMapping(value = "/intf/lvis/xml", name = "자동차 관리정보 (XML) api", produces = MediaType.APPLICATION_XML_VALUE)
|
||||||
|
public class ApiXmlController extends ApiController {}
|
Loading…
Reference in New Issue