我正在开发一个android和iOS应用程序,需要有一个RESTful服务器端。直到今天,我在eclipse上使用Jersey和RunJettyRun,但我决定开始使用新的更好的东西!我搬到了DropWizard和IntelliJ IDEA
这些是我安装的软件和我已经处理的事情:-Java 8-Maven 3.1.1-Maven和Java的环境变量。
现在,我所做的是跟随他们网站上的DropWizard入门教程。我完全按照他们说的做了,最后我试着在IntelliJ终端中运行从mvn package命令获得的jar。结果显示在输出中:
usage: java -jar dropwizard-1.0-SNAPSHOT.jar
[-h] [-v] {server,check} ...
positional arguments:
{server,check} available commands
optional arguments:
-h, --help show this help message and exit
-v, --version show the application version and exit
Process finished with exit code 0
代码:
资源类:
@Path("/hello-world")
@Produces(MediaType.APPLICATION_JSON)
public class HelloResource {
private final String template;
private final String defaultName;
private final AtomicLong counter;
public HelloResource(String template, String defaultName) {
this.template = template;
this.defaultName = defaultName;
this.counter = new AtomicLong();
}
@GET
@Timed
public Saying sayHello(@QueryParam("name") Optional<String> name) {
final String value = String.format(template, name.or(defaultName));
return new Saying(counter.incrementAndGet(), value);
}
}
配置类: import com.fasterxml.jackson.annotation.JsonProperty;import io.dropwizard.Configuration;导入组织Hibernate.验证器.约束.非空;
import javax.validation.Valid;
/**
* Created by Ido on 2/25/2015.
*/
public class Conf extends Configuration {
@NotEmpty
private String template;
@NotEmpty
private String defaultName = "Stranger";
@JsonProperty
public String getTemplate() {
return template;
}
@JsonProperty
public void setTemplate(String template) {
this.template = template;
}
@JsonProperty
public String getDefaultName() {
return defaultName;
}
@JsonProperty
public void setDefaultName(String name) {
this.defaultName = name;
}
}
表示类:公共类,表示{private long id;
@Length(max = 3)
private String content;
public Saying() {
// Jackson deserialization
}
public Saying(long id, String content) {
this.id = id;
this.content = content;
}
@JsonProperty
public long getId() {
return id;
}
@JsonProperty
public String getContent() {
return content;
}
}
服务等级:
import io.dropwizard.Application;
import io.dropwizard.java8.Java8Bundle;
import io.dropwizard.setup.Bootstrap;
import io.dropwizard.setup.Environment;
/**
* Created by Ido on 2/25/2015.
*/
public class ExampleService extends Application<Conf> {
public static void main(String [] args) throws Exception {
new ExampleService().run(args);
}
@Override
public String getName() {
return "Hello World";
}
@Override
public void initialize(Bootstrap<Conf> bootstrap) {
bootstrap.addBundle(new Java8Bundle());
}
@Override
public void run(Conf conf, Environment environment) throws Exception {
final HelloResource resource = new HelloResource(
conf.getTemplate(),
conf.getDefaultName()
);
final TemplateHealthCheck healthCheck =
new TemplateHealthCheck(conf.getTemplate());
environment.healthChecks().register("template", healthCheck);
environment.
jersey().register(resource);
}
}
POM文件
<modelVersion>4.0.0</modelVersion>
<groupId>ido.dropwizard.example</groupId>
<artifactId>dropwizard</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<dropwizard.version>0.7.1</dropwizard.version>
</properties>
<dependencies>
<dependency>
<groupId>io.dropwizard</groupId>
<artifactId>dropwizard-core</artifactId>
<version>${dropwizard.version}</version>
</dependency>
<dependency>
<groupId>io.dropwizard.modules</groupId>
<artifactId>dropwizard-java8</artifactId>
<version>0.7.0-1</version>
</dependency>
<dependency>
<groupId>io.dropwizard.modules</groupId>
<artifactId>dropwizard-java8-auth</artifactId>
<version>0.7.0-1</version>
</dependency>
<dependency>
<groupId>io.dropwizard.modules</groupId>
<artifactId>dropwizard-java8-jdbi</artifactId>
<version>0.7.0-1</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>1.6</version>
<configuration>
<createDependencyReducedPom>true</createDependencyReducedPom>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>ido.dropwizard.example.ExampleService</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
我添加了整个代码,因为我真的需要一个答案,因为我在youtube和google上的一些其他教程中遇到了这个问题,但无法让它工作…顺便说一句,当我试图测试这个时,我在浏览器上输入了http://localhost:8080/hello-world/something,也http://localhost:8080/hello-world=
好吧,我会非常感谢任何帮助,谢谢:)
Dropwizard接受第一个命令行参数,并将其分派给匹配的命令。在本例中,可用的命令是server和check,它将应用程序作为HTTP服务器运行。服务器命令需要一个配置文件,您可以这样做:
java -jar target/dropwizard-1.0-SNAPSHOT.jar server config.yml
如果它在子文件夹中
java -jar target/dropwizard-1.0-SNAPSHOT.jar server conf/config.yml
如果您没有配置。yml,创建一个这样的模板:
config.yml
当我尝试npx npx react-native run-android时,我坚持了这个错误
嗨,我已经在CentOS 7上安装了wine(版本wine-3.0.2)来运行我的。vbs文件。但在运行时,它得到了以下错误。 你能帮我修一下这个吗。我对此不太了解
我试图了解gRPC中的异常处理机制是如何工作的。 除了try-catch块之外,还有其他方法来处理运行时异常,例如服务器端的IllegalArgumentException吗? 例如,我有一些gRPC流式客户端服务,当传递的参数不满足深层次的一些断言时(在某些库中,例如,com.google.common.base.Preconditions),方法onNext抛出IllegalArgumentE
问题内容: 我有Jenkins作业的阶段,可以使用docker测试和部署我的nodejs,我在端口3000上运行docker,但是当我尝试浏览我的docker时,它不起作用,并且我的docker没有运行 这是我的Jenkinsfile Dockerfile: 我在ubuntu服务器上通过docker- compose运行Jenkins,是我丢失还是出错了?因为我的目标是使用Jenkins来测试我的
您好,我正试图在JBoss developer studio和Wildfly 11上构建一个简单的JaxRs web服务作为应用程序服务器,但我在尝试部署maven项目时遇到以下错误:
"无法加载脚本。请确保您运行的是metrserver(运行'react-native-start'),或者您的包'index.android.bundle'已正确打包以供发布。" 我正在将我的代码从Expo CLI迁移到React Native CLI。我只是在移动我的资产、组件和js文件,我也在向RN CLI添加所有包。 我已经被困在这个上面大约10个小时了,搜索了弹出的每一个错误。我现在终于经