ShortUrlController.java 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. package com.keao.edu.user.controller;
  2. import com.keao.edu.common.controller.BaseController;
  3. import com.keao.edu.user.entity.ShortUrl;
  4. import com.keao.edu.user.service.ShortUrlService;
  5. import io.swagger.annotations.Api;
  6. import org.apache.commons.lang3.StringUtils;
  7. import org.springframework.beans.factory.annotation.Autowired;
  8. import org.springframework.stereotype.Controller;
  9. import org.springframework.web.bind.annotation.GetMapping;
  10. import org.springframework.web.bind.annotation.PathVariable;
  11. import org.springframework.web.bind.annotation.RequestMapping;
  12. import javax.servlet.http.HttpServletResponse;
  13. import java.io.IOException;
  14. import java.util.Objects;
  15. /**
  16. * @Author Joburgess
  17. * @Date 2020.06.22
  18. */
  19. @Controller
  20. @RequestMapping("/")
  21. @Api(tags = "短链接服务")
  22. public class ShortUrlController extends BaseController {
  23. @Autowired
  24. private ShortUrlService shortUrlService;
  25. @GetMapping(value = "/su/{id}")
  26. public void redirectUrl(@PathVariable("id") Long id, HttpServletResponse response) throws IOException {
  27. ShortUrl shortUrl = shortUrlService.get(id);
  28. if(Objects.isNull(shortUrl)|| StringUtils.isBlank(shortUrl.getUrl())){
  29. return;
  30. }
  31. response.sendRedirect(shortUrl.getUrl());
  32. }
  33. }