UserController.java
546 Bytes
package com.bsth.controller;
import com.bsth.service.UserService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* Created by panzhao on 2017/9/4.
*/
@RestController
@RequestMapping("/user")
public class UserController {
@Autowired
UserService userService;
@RequestMapping("load_db_data")
private void loadDbData(){
userService.loadData();
}
}