GpsRealDataController.java
493 Bytes
package com.bsth.controller;
import com.bsth.client.GpsBeforeBuffer;
import com.bsth.entity.GpsEntity;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import java.util.List;
/**
* Created by panzhao on 2017/5/12.
*/
@RestController
@RequestMapping("realGps")
public class GpsRealDataController {
@RequestMapping("/all")
public List<GpsEntity> all(){
return GpsBeforeBuffer.pollAll();
}
}