জেমস যেমন বলেছিলেন; জার্সির জন্য অন্তর্নির্মিত পরীক্ষার কাঠামো রয়েছে । একটি সাধারণ হ্যালো বিশ্বের উদাহরণ এটির মতো হতে পারে:
maven সংহতকরণের জন্য pom.xml ml আপনি যখন দৌড়াবেন mvn test
। ফ্রেমওয়ার্কগুলি গ্রিজলি পাত্রে শুরু করে। নির্ভরতা পরিবর্তনের মাধ্যমে আপনি জেটি বা টমক্যাট ব্যবহার করতে পারেন।
...
<dependencies>
<dependency>
<groupId>org.glassfish.jersey.containers</groupId>
<artifactId>jersey-container-servlet</artifactId>
<version>2.16</version>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.test-framework</groupId>
<artifactId>jersey-test-framework-core</artifactId>
<version>2.16</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.test-framework.providers</groupId>
<artifactId>jersey-test-framework-provider-grizzly2</artifactId>
<version>2.16</version>
<scope>test</scope>
</dependency>
</dependencies>
...
উদাহরণ অ্যাপ.জভা
import javax.ws.rs.ApplicationPath;
import javax.ws.rs.core.Application;
@ApplicationPath("/")
public class ExampleApp extends Application {
}
হ্যালো ওয়ার্ল্ড.জভা
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
@Path("/")
public final class HelloWorld {
@GET
@Path("/hello")
@Produces(MediaType.TEXT_PLAIN)
public String sayHelloWorld() {
return "Hello World!";
}
}
হ্যালো ওয়ার্ল্ড টেস্ট.জভা
import org.glassfish.jersey.server.ResourceConfig;
import org.glassfish.jersey.test.JerseyTest;
import org.junit.Test;
import javax.ws.rs.core.Application;
import static org.junit.Assert.assertEquals;
public class HelloWorldTest extends JerseyTest {
@Test
public void testSayHello() {
final String hello = target("hello").request().get(String.class);
assertEquals("Hello World!", hello);
}
@Override
protected Application configure() {
return new ResourceConfig(HelloWorld.class);
}
}
আপনি এই নমুনা অ্যাপ্লিকেশন চেক করতে পারেন ।