|
@@ -13,7 +13,6 @@ import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
import java.io.IOException;
|
|
|
-import java.net.URLEncoder;
|
|
|
import java.util.Objects;
|
|
|
|
|
|
/**
|
|
@@ -34,7 +33,7 @@ public class ShortUrlController extends BaseController {
|
|
|
if(Objects.isNull(shortUrl)|| StringUtils.isBlank(shortUrl.getUrl())){
|
|
|
return;
|
|
|
}
|
|
|
- response.sendRedirect(URLEncoder.encode(shortUrl.getUrl(), "GBK"));
|
|
|
+ response.sendRedirect(shortUrl.getUrl());
|
|
|
}
|
|
|
|
|
|
}
|