fengxiang
2017-12-22 c147c2a80eb1353e7b54b73b72615952f29c6287
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 {
}