fengxiang
2017-12-22 3e2436955a5daf512098dc879c470ee88ce003eb
1
2
3
4
5
6
7
8
9
10
11
12
package com.moral.controller;
 
 
import org.springframework.web.bind.annotation.CrossOrigin;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
 
@RestController
@RequestMapping("device-version")
@CrossOrigin(origins = "*", maxAge = 3600)
public class DeviceVersionController {
}