最新回答 / qq_走走停停_6
可以使用阿里巴巴的镜像<mirror> <id>alimaven</id> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/groups/public/</url> <mirrorOf>central</mirrorOf> </mirror>
2018-03-17
这里请不要使用@RestController,不然返回前端的只是一串字符串。
@RestController注解表示返回的内容都是HTTP Content不会被模版引擎处理,
它默认为该类中的所有的方法都添加了@ResponseBody
@RestController注解表示返回的内容都是HTTP Content不会被模版引擎处理,
它默认为该类中的所有的方法都添加了@ResponseBody
2018-03-16