热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

javaspr_Java中的42行代码中的URL缩短器服务(Java(?!)SpringBoot+Redis

javaspr显然,编写URL缩短服务是新的“Hello,world!”在IoT微服务时代的世界中。一切始于在45行Scala中的URL缩

java spr

显然,编写URL缩短服务是新的“ Hello,world! ”在IoT /微服务/时代的世界中。 一切始于在45行Scala中的URL缩短服务 -整洁的Scala,以Spray和Redis进行调味以进行存储。 紧随其后的是, 在35行Clojure中提供了url缩短服务 ,甚至在Haskell的43行中提供了URL缩短服务 。 所以我内心的反时髦人士问:用Java语言要花多长时间? 但是,出于善意,不是普通的Java。 带有Spring Data Redis的 Spring Boot是一个很好的起点。 我们需要的只是一个处理GET和POST的简单控制器:

import com.google.common.hash.Hashing;
import org.apache.commons.validator.routines.UrlValidator;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.SpringApplication;
import org.springframework.data.redis.core.StringRedisTemplate;
import org.springframework.http.*;
import org.springframework.web.bind.annotation.*;import javax.servlet.http.*;
import java.nio.charset.StandardCharsets;@org.springframework.boot.autoconfigure.EnableAutoConfiguration
@org.springframework.stereotype.Controller
public class UrlShortener {public static void main(String[] args) {SpringApplication.run(UrlShortener.class, args);}&#64;Autowired private StringRedisTemplate redis;&#64;RequestMapping(value &#61; "/{id}", method &#61; RequestMethod.GET)public void redirect(&#64;PathVariable String id, HttpServletResponse resp) throws Exception {final String url &#61; redis.opsForValue().get(id);if (url !&#61; null)resp.sendRedirect(url);elseresp.sendError(HttpServletResponse.SC_NOT_FOUND);}&#64;RequestMapping(method &#61; RequestMethod.POST)public ResponseEntity save(HttpServletRequest req) {final String queryParams &#61; (req.getQueryString() !&#61; null) ? "?" &#43; req.getQueryString() : "";final String url &#61; (req.getRequestURI() &#43; queryParams).substring(1);final UrlValidator urlValidator &#61; new UrlValidator(new String[]{"http", "https"});if (urlValidator.isValid(url)) {final String id &#61; Hashing.murmur3_32().hashString(url, StandardCharsets.UTF_8).toString();redis.opsForValue().set(id, url);return new ResponseEntity<>("http://mydomain.com/" &#43; id, HttpStatus.OK);} elsereturn new ResponseEntity<>(HttpStatus.BAD_REQUEST);}
}

该代码很好地自我描述&#xff0c;并且在功能上等同于Scala中的版本。 我没有尝试过太多的压缩&#xff0c;以使行数尽可能的短&#xff0c;上面的代码很典型&#xff0c;只有很少的细节&#xff1a;

  • 我通常不使用通配符导入
  • 我不使用完全限定的类名&#xff08;我承认我想保存一个import行&#xff09;
  • 我用if括号包围if else用括号括起来
  • 我几乎从不使用场注入&#xff0c;这是控制家族反转中最丑陋的兄弟。 相反&#xff0c;我会去让构造函数允许使用模拟的Redis进行测试&#xff1a;

&#64;Autowired
private final StringRedisTemplate redis;public UrlShortener(StringRedisTemplate redis) {this.redis &#61; redis;
}

我最苦恼的事情是……获取原始的完整URL。 基本上&#xff0c;我需要.com或port之后的所有内容。 没有流血的方式&#xff08;既没有servlet&#xff0c;也没有Spring MVC&#xff09;&#xff0c;因此笨拙的getQueryString()摆弄着。 您可以按以下方式使用该服务-创建较短的URL&#xff1a;

$ curl -vX POST localhost:8080/https://www.google.pl/search?q&#61;tomasz&#43;nurkiewicz> POST /https://www.google.pl/search?q&#61;tomasz&#43;nurkiewicz HTTP/1.1
> User-Agent: curl/7.30.0
> Host: localhost:8080
> Accept: */*
>
<
http://mydomain.com/50784f51

通过较短的URL重定向&#xff1a;

$ curl -v localhost:8080/50784f51> GET /50784f51 HTTP/1.1
> User-Agent: curl/7.30.0
> Host: localhost:8080
> Accept: */*
>
<

为了完整起见&#xff0c;这是Gradle中的一个构建文件&#xff08;maven也可以使用&#xff09;&#xff0c;在所有以前的解决方案中都跳过了&#xff1a;

buildscript {repositories {mavenLocal()maven { url "http://repo.spring.io/libs-snapshot" }mavenCentral()}dependencies {classpath &#39;org.springframework.boot:spring-boot-gradle-plugin:1.1.5.RELEASE&#39;}
}apply plugin: &#39;java&#39;
apply plugin: &#39;spring-boot&#39;sourceCompatibility &#61; &#39;1.8&#39;repositories {mavenLocal()maven { url &#39;http://repository.codehaus.org&#39; }maven { url &#39;http://repo.spring.io/milestone&#39; }mavenCentral()
}dependencies {compile "org.springframework.boot:spring-boot-starter-web:1.1.5.RELEASE"compile "org.springframework.boot:spring-boot-starter-redis:1.1.5.RELEASE"compile &#39;com.google.guava:guava:17.0&#39;compile &#39;org.apache.commons:commons-lang3:3.3.2&#39;compile &#39;commons-validator:commons-validator:1.4.0&#39;compile &#39;org.apache.tomcat.embed:tomcat-embed-el:8.0.9&#39;compile "org.aspectj:aspectjrt:1.8.1"runtime "cglib:cglib-nodep:3.1"
}tasks.withType(GroovyCompile) {groovyOptions.optimizationOptions.indy &#61; true
}task wrapper(type: Wrapper) {gradleVersion &#61; &#39;2.0&#39;
}

实际上也是42行...这就是整个应用程序&#xff0c;没有XML&#xff0c;没有描述符&#xff0c;没有安装。

对于最短&#xff0c;最模糊的工作代码&#xff0c;我不认为此练习只是一个虚拟的代码。 带有Redis后端的URL缩短器Web服务是给定语言和生态系统的语法和功能的有趣展示。 有趣的是&#xff0c;还有很多算法问题&#xff0c;例如Rosetta代码中发现的问题。 这也是编写REST服务的一个很好的最低限度模板。

原始Scala实现的一个重要功能&#xff08;包括该实现&#xff09;在所有实现中都以某种方式被默默地忘记了&#xff0c;它是非阻塞的。 HTTP和Redis的访问是事件驱动的&#xff08; React &#xff0c;没事&#xff0c;我说&#xff09;&#xff0c;所以我想它可以同时处理客户数以万计。 阻止由Tomcat支持的控制器无法实现这一点。 但是您仍然必须承认&#xff0c;这种用Java编写的服务&#xff08;甚至不是Java 8&#xff01;&#xff09;简明扼要&#xff0c;易于遵循和简单明了-其他解决方案都不是可读的&#xff08;这当然是主观的&#xff09;。

等待别人&#xff01;

翻译自: https://www.javacodegeeks.com/2014/08/url-shortener-service-in-42-lines-of-code-in-java-spring-boot-redis.html

java spr



推荐阅读
author-avatar
loloyoyo555
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有