java rest jar包_Java Rest Intro - JAR

Follow these steps to create a standalone application with Jersey and Tomcat:

Adding Maven dependencies

Add the following dependencies to your pom.xml:

8.5.4

2.23.2

UTF-8

org.apache.tomcat.embed

tomcat-embed-core

${tomcat.version}

org.apache.tomcat.embed

tomcat-embed-jasper

${tomcat.version}

org.apache.tomcat

tomcat-jasper

${tomcat.version}

org.apache.tomcat

tomcat-jasper-el

${tomcat.version}

org.apache.tomcat

tomcat-jsp-api

${tomcat.version}

org.glassfish.jersey.containers

jersey-container-servlet

${jersey.version}

Adding Maven plugins

Add the following plugins to your pom.xml:

tomcat-embedded-sample

org.apache.maven.plugins

maven-compiler-plugin

3.5.1

true

1.8

1.8

org.apache.maven.plugins

maven-shade-plugin

2.4.3

tomcat-embedded-sample-${project.version}

package

shade

com.example.launch.Launcher

Creating a launcher class

Define a launcher class as following:

public class Launcher {

public static void main(String[] args) throws Exception {

new Launcher().start();

}

public void start() throws Exception {

String contextPath = "";

String appBase = ".";

String port = System.getenv("PORT");

if (port == null || port.isEmpty()) {

port = "8080";

}

Tomcat tomcat = new Tomcat();

tomcat.setPort(Integer.valueOf(port));

tomcat.getHost().setAppBase(appBase);

Context context = tomcat.addWebapp(contextPath, appBase);

Tomcat.addServlet(context, "jersey-container-servlet",

new ServletContainer(resourceConfig()));

context.addServletMapping("/api/*", "jersey-container-servlet");

tomcat.start();

tomcat.getServer().await();

}

private ResourceConfig resourceConfig() {

return new JerseyConfiguration();

}

}

Defining Jersey configuration

Create a class to configure your Jersey application:

public class JerseyConfiguration extends ResourceConfig {

public JerseyConfiguration() {

packages("com.example");

}

}

Creating resource classes

Define your resource class. The following is just an example:

@Path("hello")

public class HelloWorldResource {

@GET

@Produces(MediaType.TEXT_PLAIN)

public Response helloWorld() {

return Response.ok("Hello World").build();

}

}

Compiling and running the application

To compile and run the application, follow these steps:

Open a command line window or terminal.

Navigate to the root directory of the project, where the pom.xml resides.

Compile the project: mvn clean compile.

Package the application: mvn package.

Look in the target directory. You should see a file with the following or a similar name: tomcat-embedded-sample-1.0-SNAPSHOT.jar.

Change into the target directory.

Execute the JAR: java -jar tomcat-embedded-sample-1.0-SNAPSHOT.jar.

The application is available at http://localhost:8080/api/hello.

restful restful所需要的jar包 ========================================= Restlet, a RESTful Web framework for Java ========================================= http://www.restlet.org ----------------------------------------- Native REST support * Core REST concepts have equivalent Java classes (UniformInterface, Resource, Representation, Connector for example). * Suitable for both client-side and server-side web applications. The innovation is that that it uses the same API, reducing the learning curve and the software footprint. * Restlet-GWT module available, letting you leverage the Restlet API from within any Web browser, without plugins. * Concept of "URIs as UI" supported based on the URI Templates standard. This results in a very flexible yet simple routing with automatic extraction of URI variables into request attributes. * Tunneling service lets browsers issue any HTTP method (PUT, DELETE, MOVE, etc.) through a simple HTTP POST. This service is transparent for Restlet applications. Complete Web Server * Static file serving similar to Apache HTTP Server, with metadata association based on file extensions. * Transparent content negotiation based on client preferences. * Conditional requests automatically supported for resources. * Remote edition of files based on PUT and DELETE methods (aka mini-WebDAV mode). * Decoder service transparently decodes compressed or encoded input representations. This service is transparent for Restlet applications. * Log service writes all accesses to your applications in a standard Web log file. The log format follows the W3C Extended Log File Format and is fully customizable. * Powerful URI based redirection support similar to Apache Rewrite module. Available Connectors * Multiple server HTTP connectors available, based on either Mortbay's Jetty or the Simple framework or Grizzly NIO framework. * AJP server connector available to let you plug behind an Apache HTT
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值