绑定完请刷新页面
取消
刷新

分享好友

×
取消 复制
使用Spring Boot构建RESTful Web服务以访问Aerospike集群中的数据
2022-06-21 15:46:44

Spring Boot是进入Spring的强大起点。 它使您可以轻松地构建基于Spring的应用程序。 

Aerospike是一个分布式和复制的内存数据库,经过优化可同时使用DRAM和本机闪存/ SSD。 

Aerospike还具有很高的可靠性,并且符合ACID标准。 开发人员可以在不中断数据库服务的情况下将其数据库集群从两个节点快速扩展到二十个节点。

你会建立什么

本文将引导您使用Spring Boot创建一个简单的RESTful Web服务。 

您将构建一个接受HTTP GET请求的服务。 它使用以下JSON进行响应:

{"expiration":121023390,"bins":{"DISTANCE":2446,"DEST_CITY_NAME":"New York","DEST":"JFK","YEAR":2012,"ORI_AIRPORT_ID":"14679","DEP_TIME":"802","DAY_OF_MONTH":12,"DEST_STATE_ABR":"NY","ORIGIN":"SAN","FL_NUM":160,"CARRIER":"AA","ORI_STATE_ABR":"CA","FL_DATE":"2012/01/12","AIR_TIME":291,"ORI_CITY_NAME":"San Diego","ELAPSED_TIME":321,"ARR_TIME":"1623","AIRLINE_ID":19805},"generation":1}

您将使用的数据是商业航班的详细信息(包括在示例代码中(SP:将链接添加到zip文件中),是一个数据文件flight_from.csv,其中包含大约一百万个航班记录。

现成的应用程序中还添加了许多功能,用于在生产(或其他)环境中管理服务。 这在功能上来自Spring,(请参阅Spring指南: 构建RESTful Web服务 。)

您将需要什么

设置项目

使用Spring构建应用程序时,可以使用任何喜欢的构建系统,但是Maven代码包含在此处。 如果您不熟悉Maven,请参阅Spring指南: 使用Maven构建Java项目 。

您还将需要构建Aerospike Java客户端并将其安装到本地Maven存储库中。 下载源发行版,解压缩/解压缩并运行以下Maven命令:

  • mvn install:安装文件-Dfile = client / depends / gnu-crypto.jar -DgroupId = org.gnu -DartifactId = gnu-crypto -Dversion = 2.0.1 -Dpackaging = jar
  • MVN清洁
  • mvn包

创建目录结构

在您选择的项目中,创建以下子目录结构:

->源 
->主要 
->的Java 
-> com 
->气钉 
->客户 
->休息

创建一个Maven pom

使用以下代码在项目的根目录中创建一个maven pom.xml文件:

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.aerospike</groupId>
  7. <artifactId>aerospike-restful-example</artifactId>
  8. <version>1.0.0</version>
  9. <parent>
  10. <groupId>org.springframework.boot</groupId>
  11. <artifactId>spring-boot-starter-parent</artifactId>
  12. <version>0.5.0.M4</version>
  13. </parent>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.springframework.boot</groupId>
  17. <artifactId>spring-boot-starter-web</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter-actuator</artifactId>
  22. </dependency>
  23. <!-- Aerospike client. -->
  24. <dependency>
  25. <groupId>com.aerospike</groupId>
  26. <artifactId>aerospike-client</artifactId>
  27. <version>3.0.9</version>
  28. </dependency>
  29. <!-- Apache command line parser. -->
  30. <dependency>
  31. <groupId>commons-cli</groupId>
  32. <artifactId>commons-cli</artifactId>
  33. <version>1.2</version>
  34. </dependency>
  35. </dependencies>
  36. <properties>
  37. <start-class>com.aerospike.client.rest.AerospikeRESTfulService</start-class>
  38. </properties>
  39. <build>
  40. <plugins>
  41. <plugin>
  42. <artifactId>maven-compiler-plugin</artifactId>
  43. <version>2.3.2</version>
  44. </plugin>
  45. <plugin>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-maven-plugin</artifactId>
  48. </plugin>
  49. </plugins>
  50. </build>
  51. <repositories>
  52. <repository>
  53. <id>spring-snapshots</id>
  54. <name>Spring Snapshots</name>
  55. <url>http://repo.spring.io/libs-snapshot</url>
  56. <snapshots>
  57. <enabled>true</enabled>
  58. </snapshots>
  59. </repository>
  60. </repositories>
  61. <pluginRepositories>
  62. <pluginRepository>
  63. <id>spring-snapshots</id>
  64. <name>Spring Snapshots</name>
  65. <url>http://repo.spring.io/libs-snapshot</url>
  66. <snapshots>
  67. <enabled>true</enabled>
  68. </snapshots>
  69. </pluginRepository>
  70. </pluginRepositories>
  71. </project>

它看起来很吓人,但实际上不是。

创建一个JSON转换器类

Aerospike API将返回Record对象,并将包含记录的生成,到期和bin值。 但是您希望这些值以JSON格式返回。 实现此目的的简单方法是使用翻译器类。

使用以下代码创建翻译器类。 这是一个通用类,它将Aerospike Record对象转换为JSONObject。

  1. src/main/java/com/aerospike/client/rest/JSONRecord.java
  2. package com.aerospike.client.rest;
  3. import java.util.Map;
  4. import org.json.simple.JSONArray;
  5. import org.json.simple.JSONObject;
  6. import com.aerospike.client.Record;
  7. /**
  8. * JSONRecord is used to convert an Aerospike Record
  9. * returned from the cluster to JSON format
  10. *
  11. */
  12. @SuppressWarnings("serial")
  13. public class JSONRecord extends JSONObject {
  14. @SuppressWarnings("unchecked")
  15. public JSONRecord(Record record){
  16. put("generation", record.generation);
  17. put("expiration", record.expiration);
  18. put("bins", new JSONObject(record.bins));
  19. if (record.duplicates != null){
  20. JSONArray duplicates = new JSONArray();
  21. for (Map<String, Object> duplicate : record.duplicates){
  22. duplicates.add(new JSONObject(duplicate));
  23. }
  24. put("duplicates", duplicates);
  25. }
  26. }
  27. }

此类并不复杂,并且非常通用。 您可能希望专门针对特定记录进行JSON转换。

创建一个资源控制器

在Spring中,REST端点是Spring MVC控制器。 以下代码处理对/ as / {namespace} / {set} / getAll / 1234的GET请求,并返回键为1234的Flight记录,其中{namespace}是Aerospike命名空间的路径变量,而{set}是Aerospike集的路径变量。

  1. src/main/java/com/aerospike/client/rest/RESTController.java
  2. package com.aerospike.client.rest;
  3. import java.io.BufferedReader;
  4. import java.io.InputStreamReader;
  5. import org.springframework.beans.factory.annotation.Autowired;
  6. import org.springframework.stereotype.Controller;
  7. import org.springframework.web.bind.annotation.PathVariable;
  8. import org.springframework.web.bind.annotation.RequestMapping;
  9. import org.springframework.web.bind.annotation.RequestMethod;
  10. import org.springframework.web.bind.annotation.RequestParam;
  11. import org.springframework.web.bind.annotation.ResponseBody;
  12. import org.springframework.web.multipart.MultipartFile;
  13. import com.aerospike.client.AerospikeClient;
  14. import com.aerospike.client.Bin;
  15. import com.aerospike.client.Key;
  16. import com.aerospike.client.Record;
  17. import com.aerospike.client.policy.Policy;
  18. import com.aerospike.client.policy.WritePolicy;
  19. @Controller
  20. public class RESTController {
  21. @Autowired
  22. AerospikeClient client;
  23. @RequestMapping(value="/as/{namespace}/{set}/getAll/{key}", method=RequestMethod.GET)
  24. public @ResponseBody JSONRecord getAll(@PathVariable("namespace") String namespace,
  25. @PathVariable("set") String set,
  26. @PathVariable("key") String keyvalue) throws Exception {
  27. Policy policy = new Policy();
  28. Key key = new Key(namespace, set, keyvalue);
  29. Record result = client.get(policy, key);
  30. return new JSONRecord(result);
  31. }
  32. }

面向人的控制器与REST端点控制器之间的区别在于,响应主体将包含数据,在您的情况下,该主体是表示从Aerospike读取的记录的JSON对象。

@ResponseBody注释告诉Spring MVC将返回的对象写入响应主体。

创建一个可执行的主类

实现main方法以创建Spring MVC控制器。 简单的方法是使用SpringApplication helper类。

  1. src/main/java/com/aerospike/client/rest/AerospikeRESTfulService.java
  2. package com.aerospike.client.rest;
  3. import java.util.Properties;
  4. import javax.servlet.MultipartConfigElement;
  5. import org.apache.commons.cli.CommandLine;
  6. import org.apache.commons.cli.CommandLineParser;
  7. import org.apache.commons.cli.Options;
  8. import org.apache.commons.cli.ParseException;
  9. import org.apache.commons.cli.PosixParser;
  10. import org.springframework.boot.SpringApplication;
  11. import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
  12. import org.springframework.context.annotation.Bean;
  13. import org.springframework.context.annotation.ComponentScan;
  14. import org.springframework.context.annotation.Configuration;
  15. import com.aerospike.client.AerospikeClient;
  16. import com.aerospike.client.AerospikeException;
  17. @Configuration
  18. @EnableAutoConfiguration
  19. @ComponentScan
  20. public class AerospikeRESTfulService {
  21. @Bean
  22. public AerospikeClient asClient() throws AerospikeException {
  23. Properties as = System.getProperties();
  24. return new AerospikeClient(as.getProperty("seedHost"),
  25. Integer.parseInt(as.getProperty("port")));
  26. }
  27. @Bean
  28. public MultipartConfigElement multipartConfigElement() {
  29. return new MultipartConfigElement("");
  30. }
  31. public static void main(String[] args) throws ParseException {
  32. Options options = new Options();
  33. options.addOption("h", "host", true,
  34. "Server hostname (default: localhost)");
  35. options.addOption("p", "port", true, "Server port (default: 3000)");
  36. // parse the command line args
  37. CommandLineParser parser = new PosixParser();
  38. CommandLine cl = parser.parse(options, args, false);
  39. // set properties
  40. Properties as = System.getProperties();
  41. String host = cl.getOptionValue("h", "localhost");
  42. as.put("seedHost", host);
  43. String portString = cl.getOptionValue("p", "3000");
  44. as.put("port", portString);
  45. // start app
  46. SpringApplication.run(AerospikeRESTfulService.class, args);
  47. }
  48. }

@EnableAutoConfiguration注释已添加:它提供了一系列默认值(例如嵌入式servlet容器),具体取决于您的类路径的内容以及其他内容。

它也用@ComponentScan注释,它告诉Spring扫描那些控制器的hello包(以及任何其他带注释的组件类)。

后,使用@Configuration注释此类。 这使您可以将AerospikeClient的实例配置为Spring Bean。

还定义了一个MultipartConfigElement bean。 这使您可以使用此服务处理POST操作。

main方法的大多数主体仅读取命令行参数并设置系统属性以指定Aerospike群集的种子主机和端口。

太容易了!

上载资料

您可能需要将数据上传到此服务。 为此,您需要向RESTController类添加其他方法来处理上载的文件。 在此示例中,它将是一个包含飞行记录的CSV文件。

  1. src/main/java/com/aerospike/client/rest/RESTController.java
  2. @Controller
  3. public class RESTController {
  4. . . . (code omitted) . . .
  5. /*
  6. * CSV flights file upload
  7. */
  8. @RequestMapping(value="/uploadFlights", method=RequestMethod.GET)
  9. public @ResponseBody String provideUploadInfo() {
  10. return "You can upload a file by posting to this same URL.";
  11. }
  12. @RequestMapping(value="/uploadFlights", method=RequestMethod.POST)
  13. public @ResponseBody String handleFileUpload(@RequestParam("name") String name,
  14. @RequestParam("file") MultipartFile file){
  15. if (!file.isEmpty()) {
  16. try {
  17. WritePolicy wp = new WritePolicy();
  18. String line = "";
  19. BufferedReader br = new BufferedReader(new InputStreamReader(file.getInputStream()));
  20. while ((line = br.readLine()) != null) {
  21. // use comma as separator
  22. String[] flight = line.split(",");
  23. /*
  24. * write the record to Aerospike
  25. * NOTE: Bin names must not exceed 14 characters
  26. */
  27. client.put(wp,
  28. new Key("test", "flights",flight[].trim() ),
  29. new Bin("YEAR", Integer.parseInt(flight[1].trim())),
  30. new Bin("DAY_OF_MONTH", Integer.parseInt(flight[2].trim())),
  31. new Bin("FL_DATE", flight[3].trim()),
  32. new Bin("AIRLINE_ID", Integer.parseInt(flight[4].trim())),
  33. new Bin("CARRIER", flight[5].trim()),
  34. new Bin("FL_NUM", Integer.parseInt(flight[6].trim())),
  35. new Bin("ORI_AIRPORT_ID", Integer.parseInt(flight[7].trim())),
  36. new Bin("ORIGIN", flight[8].trim()),
  37. new Bin("ORI_CITY_NAME", flight[9].trim()),
  38. new Bin("ORI_STATE_ABR", flight[10].trim()),
  39. new Bin("DEST", flight[11].trim()),
  40. new Bin("DEST_CITY_NAME", flight[12].trim()),
  41. new Bin("DEST_STATE_ABR", flight[13].trim()),
  42. new Bin("DEP_TIME", Integer.parseInt(flight[14].trim())),
  43. new Bin("ARR_TIME", Integer.parseInt(flight[15].trim())),
  44. new Bin("ELAPSED_TIME", Integer.parseInt(flight[16].trim())),
  45. new Bin("AIR_TIME", Integer.parseInt(flight[17].trim())),
  46. new Bin("DISTANCE", Integer.parseInt(flight[18].trim()))
  47. );
  48. System.out.println("Flight [ID= " + flight[]
  49. + " , year=" + flight[1]
  50. + " , DAY_OF_MONTH=" + flight[2]
  51. + " , FL_DATE=" + flight[3]
  52. + " , AIRLINE_ID=" + flight[4]
  53. + " , CARRIER=" + flight[5]
  54. + " , FL_NUM=" + flight[6]
  55. + " , ORIGIN_AIRPORT_ID=" + flight[7]
  56. + "]");
  57. }
  58. br.close();
  59. return "You successfully uploaded " + name;
  60. } catch (Exception e) {
  61. return "You failed to upload " + name + " => " + e.getMessage();
  62. }
  63. } else {
  64. return "You failed to upload " + name + " because the file was empty.";
  65. }
  66. }
  67. }

新方法handleFileUpload()响应POST并一次读取一行上传流。 解析每一行,并构建一个Key对象和几个Bin对象以形成Aerospike记录。 后,调用Aerospike put()方法将记录存储在Aerospike集群中。

另一个新方法ProvideUploadInfo()响应GET并返回一条消息,指示可以进行上传。

上载客户端应用程序

可以按照您想要的任何方式进行上传。 但是您可以使用以下独立的Java类将数据上传到此服务。

  1. src/test/java/com.aerospike.client.rest/FlightsUploader.java
  2. package com.aerospike.client.rest;
  3. import org.junit.Before;
  4. import org.junit.Test;
  5. import org.springframework.core.io.FileSystemResource;
  6. import org.springframework.util.LinkedMultiValueMap;
  7. import org.springframework.util.MultiValueMap;
  8. import org.springframework.web.client.RestTemplate;
  9. public class FilghtsUploader {
  10. private static final String TEST_FILE = "flights_from.csv";
  11. @Before
  12. public void setUp() throws Exception {
  13. }
  14. @Test
  15. public void upload() {
  16. RestTemplate template = new RestTemplate();
  17. MultiValueMap<String, Object> parts = new LinkedMultiValueMap<String, Object>();
  18. parts.add("name", TEST_FILE);
  19. parts.add("file", new FileSystemResource(TEST_FILE));
  20. String response = template.postForObject(" http://localhost:8080/uploadFlights ",
  21. parts, String.class);
  22. System.out.println(response);
  23. }
  24. }

航班资料

这是2012年的真实数据。它包含大约100万条记录,因此请记住,上传它需要几分钟。

构建和运行服务

Maven pom.xml将服务打包到一个jar中。 使用命令:

mvn清洁包装

这将生成一个独立的Web服务应用程序,该应用程序打包到目标子目录中的可运行jar文件中。 该jar文件包含Tomcat的实例,因此您可以简单地运行jar,而无需将其安装在Application Server中。

java -jar aerospike-restful-example-1.0.0.jar

摘要

恭喜你! 您刚刚使用Spring开发了一个简单的RESTful服务并将其连接到Aerospike集群。

完整的示例代码

范例程式码

设计注意事项

访问控制当前由应用程序与数据库处理。 由于身份验证过程会降低数据库速度,因此实际上所有NoSQL数据库都不支持此功能。 与集成身份验证功能相比,我们的大多数客户都将提高速度作为优先事项。

另一个通常要求的功能是将两个不同的数据集结合在一起。 这是所有分布式数据库都面临的挑战,因为联接的数据是分布式的。 在这种情况下,开发人员必须在应用程序中实现联接。

翻译自: https://www.infoq.com/articles/rest-webservice-spring-boot-aerospike/?topicPageSponsorship=c1246725-b0a7-43a6-9ef9-68102c8d48e1

分享好友

分享这个小栈给你的朋友们,一起进步吧。

Aerospike
创建时间:2022-04-14 10:06:31
Aerospike
展开
订阅须知

• 所有用户可根据关注领域订阅专区或所有专区

• 付费订阅:虚拟交易,一经交易不退款;若特殊情况,可3日内客服咨询

• 专区发布评论属默认订阅所评论专区(除付费小栈外)

技术专家

查看更多
  • LCR_
    专家
戳我,来吐槽~