Paula Meece began their career at ThinkWare in 2005 as an Application Support. Paula then moved up the ranks to become an Implementation & Training Specialist in 2007, followed by a promotion to Client Services Manager. Finally, they were promoted to Vice President Of Services in 2007, where they remain today.
package com.example.demo.controller;
import com.example.demo.service.UserService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("/user")
public class UserController {
@Autowired
UserService userService;
@RequestMapping("/getUser")
public Object getUser(){
return userService.getUser();
}
}
Links
Sign up to view 0 direct reports
Get started