1

这似乎应该是一项微不足道的任务。但我无法完全弄清楚我应该做什么。我是 Maven/Spark 的新手。在四处搜索之后,仔细查看文档以及其他内容。我不知道如何启动我的 spark 应用程序?

我按照本指南在 Intellij 中进行设置。 https://sparktutorials.github.io/2015/04/02/setting-up-a-spark-project-with-maven.html

我可以运行所有的 Maven 任务,除了部署。

在此处输入图像描述

部署失败并出现此错误。

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-deploy-plugin:2.7:deploy (default-deploy) on project framework: Deployment failed: repository element was not specified in the POM inside distributionManagement element or in -DaltDeploymentRepository=id::layout::url parameter -> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.

我不确定这是否重要?部署任务是为了启动服务器吗?我不确定。

POM.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <groupId>com.krishollenbeck.framework</groupId>
  <artifactId>framework</artifactId>
  <version>1.0</version>
  <properties>
    <maven.compiler.source>1.8</maven.compiler.source>
    <maven.compiler.target>1.8</maven.compiler.target>
  </properties>
  <dependencies>
    <dependency>
      <groupId>com.sparkjava</groupId>
      <artifactId>spark-core</artifactId>
      <version>2.5</version>
    </dependency>
  </dependencies>
</project>

这就是 DOCS 所说的。

启动服务器呢?当您执行需要启动服务器的操作(即声明路由或设置端口)时,服务器会自动启动。您也可以通过调用 init() 手动启动服务器。

http://sparkjava.com/documentation.html#stopping-the-server

好的?这意味着什么?通常有一些命令或一些东西来启动服务器。

问题:TL;DR

如何启动火花服务器?

额外的题外话:

火花还保持吗?这是一个不好的框架吗?我正在寻找一个轻量级的 java 服务器。大多数应用程序逻辑将在客户端处理。只需要在服务器端处理一些基本的登录/ CRUD 内容。并构建一些宁静的 API。

项目结构:(仅供参考)

在此处输入图像描述

4

2 回答 2

2

从 Intellij 运行你的主类。或者,如果您想使用 maven 运行它,请执行以下操作:

mvn exec:java -Dexec.mainClass=my.IakaMain

并确保将 my.IakaMain 更改为 yourpackage.YourClassName

或者通过 Intellij Debug Configuration 运行:(像这样)

在此处输入图像描述

运行查看:(请注意端口号不是通常的80或8080)

http://localhost:4567/你好

注意:如果您收到此警告(烦人)。

SLF4J:无法加载类“org.slf4j.impl.StaticLoggerBinder”。SLF4J:默认为无操作 (NOP) 记录器实现 SLF4J:有关详细信息,请参阅http://www.slf4j.org/codes.html#StaticLoggerBinder

将此添加到您的 pom.xml

<dependency>
    <groupId>org.slf4j</groupId>
    <artifactId>slf4j-simple</artifactId>
    <version>1.7.21</version>
</dependency>
于 2017-02-27T16:58:20.517 回答
1

要启动服务器,文档还提到:

您也可以通过调用 init() 手动启动服务器。请参阅:http ://sparkjava.com/documentation.html#stopping-the-server

最后一次提交是 4 天前,我敢打赌它仍然受支持。

https://github.com/perwendel/spark/

最后,您的问题来自于您需要告诉 maven 部署插件在何处使用标签准确部署:

要启用此 mojo 功能,您必须包含有效的部分 POM

请参阅:http ://maven.apache.org/plugins/maven-deploy-plugin/usage.html

至于轻量级数据库,我使用hsqldb但我想这更像是一个品味问题。

于 2017-02-27T16:43:49.827 回答