package com.xiaobai.springboot.axios.controller;import com.xiaobai.springboot.axios.domain.User;import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.CrossOrigin;import org.springframework.web.bind.annotation.GetMapping;import org.springframework.web.bind.annotation.ResponseBody;@CrossOrigin("*")@Controller@ResponseBodypublicclassUserController{@GetMapping(value ="/user")public User user(){
User user =newUser();
user.setUsername("王二");return user;}}