Skip to content
This repository was archived by the owner on Oct 30, 2023. It is now read-only.

Commit b7862d2

Browse files
committed
resteasy and enhanced init options
1 parent d81edd3 commit b7862d2

File tree

264 files changed

+17883
-39
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

264 files changed

+17883
-39
lines changed

java/java-jersey2-webxml/README.md

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Swagger Sample App
2+
3+
## Overview
4+
This is a java project to build a stand-alone server which implements the OpenAPI Spec. You can find out
5+
more about both the spec and the framework at http://swagger.io.
6+
7+
### To run (with Maven)
8+
To run the server, run this task:
9+
10+
```
11+
mvn package -Dlog4j.configuration=file:./conf/log4j.properties jetty:run
12+
```
13+
14+
This will start Jetty embedded on port 8002.
15+
16+
### Testing the server
17+
Once started, you can navigate to http://localhost:8002/api/openapi.json to view the Swagger Resource Listing.
18+
This tells you that the server is up and ready to demonstrate Swagger.
19+
20+
### Using the UI
21+
There is an HTML5-based API tool bundled in this sample--you can view it it at [http://localhost:8002](http://localhost:8002). This lets you inspect the API using an interactive UI. You can access the source of this code from [here](https://github.com/swagger-api/swagger-ui)
22+
23+
### Applying an API key
24+
The sample app has an implementation of the Swagger ApiAuthorizationFilter. This restricts access to resources
25+
based on api-key. There are two keys defined in the sample app:
26+
27+
`default-key`
28+
29+
`special-key`
30+
31+
When no key is applied, the "default-key" is applied to all operations. If the "special-key" is entered, a
32+
number of other resources are shown in the UI, including sample CRUD operations.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
log4j.rootCategory=ERROR, CONSOLE, LOGFILE
2+
3+
log4j.logger.io.swagger=ERROR
4+
log4j.logger.org.atmosphere=ERROR
5+
6+
# CONSOLE is set to be a ConsoleAppender using a PatternLayout.
7+
log4j.appender.CONSOLE=org.apache.log4j.ConsoleAppender
8+
log4j.appender.CONSOLE.layout=org.apache.log4j.PatternLayout
9+
log4j.appender.CONSOLE.layout.ConversionPattern=%p %d{yyyy-MM-dd HH:mm:ss.SSS Z} %c{1} - %m%n
10+
11+
# LOGFILE is set to be a File appender using a PatternLayout.
12+
log4j.appender.LOGFILE=org.apache.log4j.RollingFileAppender
13+
log4j.appender.LOGFILE.File=logs/swagger.log
14+
log4j.appender.LOGFILE.Append=true
15+
log4j.appender.LOGFILE.layout=org.apache.log4j.PatternLayout
16+
log4j.appender.LOGFILE.layout.ConversionPattern=%p %d{yyyy-MM-dd HH:mm:ss.SSS Z} %c{1} - %m%n
17+
log4j.appender.LOGFILE.MaxFileSize=10MB
18+
log4j.appender.LOGFILE.MaxBackupIndex=10

java/java-jersey2-webxml/pom.xml

+187
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,187 @@
1+
<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/maven-v4_0_0.xsd">
2+
<parent>
3+
<groupId>io.swagger.samples.v3</groupId>
4+
<artifactId>swagger-samples-project</artifactId>
5+
<version>2.0.0</version>
6+
<relativePath>../..</relativePath>
7+
</parent>
8+
<modelVersion>4.0.0</modelVersion>
9+
<groupId>io.swagger.samples.v3</groupId>
10+
<artifactId>swagger-jersey2-webxml-sample-app</artifactId>
11+
<packaging>war</packaging>
12+
<name>swagger-jersey2-webxml-sample-app</name>
13+
<version>2.0.0</version>
14+
<build>
15+
<sourceDirectory>src/main/java</sourceDirectory>
16+
<plugins>
17+
<plugin>
18+
<groupId>org.apache.maven.plugins</groupId>
19+
<artifactId>maven-war-plugin</artifactId>
20+
<version>2.1.1</version>
21+
</plugin>
22+
<plugin>
23+
<artifactId>maven-failsafe-plugin</artifactId>
24+
<version>2.6</version>
25+
<executions>
26+
<execution>
27+
<goals>
28+
<goal>integration-test</goal>
29+
<goal>verify</goal>
30+
</goals>
31+
</execution>
32+
</executions>
33+
</plugin>
34+
<plugin>
35+
<groupId>org.eclipse.jetty</groupId>
36+
<artifactId>jetty-maven-plugin</artifactId>
37+
<version>${jetty-version}</version>
38+
<configuration>
39+
<webApp>
40+
<contextPath>/</contextPath>
41+
</webApp>
42+
<webAppSourceDirectory>target/${project.artifactId}-${project.version}</webAppSourceDirectory>
43+
<stopPort>8079</stopPort>
44+
<stopKey>stopit</stopKey>
45+
<httpConnector>
46+
<port>8002</port>
47+
<idleTimeout>60000</idleTimeout>
48+
</httpConnector>
49+
<systemProperties>
50+
<systemProperty>
51+
<name>org.eclipse.jetty.util.log.Log</name>
52+
<value>org.eclipse.jetty.util.log.Slf4jLog</value>
53+
</systemProperty>
54+
<systemProperty>
55+
<name>logback.configurationFile</name>
56+
<value>src/main/resources/logback.xml</value>
57+
</systemProperty>
58+
</systemProperties>
59+
</configuration>
60+
<executions>
61+
<execution>
62+
<id>start-jetty</id>
63+
<phase>pre-integration-test</phase>
64+
<goals>
65+
<goal>stop</goal>
66+
<goal>start</goal>
67+
</goals>
68+
<configuration>
69+
<scanIntervalSeconds>0</scanIntervalSeconds>
70+
</configuration>
71+
</execution>
72+
<execution>
73+
<id>stop-jetty</id>
74+
<phase>post-integration-test</phase>
75+
<goals>
76+
<goal>stop</goal>
77+
</goals>
78+
</execution>
79+
</executions>
80+
</plugin>
81+
<plugin>
82+
<groupId>com.googlecode.maven-download-plugin</groupId>
83+
<artifactId>download-maven-plugin</artifactId>
84+
<version>1.2.1</version>
85+
<executions>
86+
<execution>
87+
<id>swagger-ui</id>
88+
<goals>
89+
<goal>wget</goal>
90+
</goals>
91+
<configuration>
92+
<skipCache>true</skipCache>
93+
<url>https://github.com/swagger-api/swagger-ui/archive/master.tar.gz</url>
94+
<unpack>true</unpack>
95+
<outputDirectory>${project.build.directory}</outputDirectory>
96+
</configuration>
97+
</execution>
98+
</executions>
99+
</plugin>
100+
<plugin>
101+
<artifactId>maven-resources-plugin</artifactId>
102+
<version>2.6</version>
103+
<executions>
104+
<execution>
105+
<id>copy-resources</id>
106+
<phase>validate</phase>
107+
<goals>
108+
<goal>copy-resources</goal>
109+
</goals>
110+
<configuration>
111+
<outputDirectory>target/${project.artifactId}-${project.version}</outputDirectory>
112+
<resources>
113+
<resource>
114+
<directory>${project.build.directory}/swagger-ui-master/dist</directory>
115+
<filtering>true</filtering>
116+
<excludes>
117+
<exclude>index.html</exclude>
118+
</excludes>
119+
</resource>
120+
</resources>
121+
</configuration>
122+
</execution>
123+
</executions>
124+
</plugin>
125+
<plugin>
126+
<groupId>org.apache.maven.plugins</groupId>
127+
<artifactId>maven-compiler-plugin</artifactId>
128+
<configuration>
129+
<source>1.8</source>
130+
<target>1.8</target>
131+
</configuration>
132+
</plugin>
133+
</plugins>
134+
</build>
135+
<dependencies>
136+
<dependency>
137+
<groupId>io.swagger.core.v3</groupId>
138+
<artifactId>swagger-jaxrs2</artifactId>
139+
<scope>compile</scope>
140+
<version>${swagger-version}</version>
141+
</dependency>
142+
<dependency>
143+
<groupId>com.fasterxml.jackson.jaxrs</groupId>
144+
<artifactId>jackson-jaxrs-json-provider</artifactId>
145+
<version>${jackson-version}</version>
146+
</dependency>
147+
148+
<dependency>
149+
<groupId>ch.qos.logback</groupId>
150+
<artifactId>logback-classic</artifactId>
151+
<version>${logback-version}</version>
152+
<scope>compile</scope>
153+
</dependency>
154+
<dependency>
155+
<groupId>ch.qos.logback</groupId>
156+
<artifactId>logback-core</artifactId>
157+
<version>${logback-version}</version>
158+
<scope>compile</scope>
159+
</dependency>
160+
161+
<dependency>
162+
<groupId>junit</groupId>
163+
<artifactId>junit</artifactId>
164+
<scope>test</scope>
165+
</dependency>
166+
<dependency>
167+
<groupId>javax.servlet</groupId>
168+
<artifactId>javax.servlet-api</artifactId>
169+
<scope>provided</scope>
170+
</dependency>
171+
<dependency>
172+
<groupId>org.glassfish.jersey.containers</groupId>
173+
<artifactId>jersey-container-servlet</artifactId>
174+
<version>${jersey2-version}</version>
175+
</dependency>
176+
<dependency>
177+
<groupId>org.glassfish.jersey.media</groupId>
178+
<artifactId>jersey-media-multipart</artifactId>
179+
<version>${jersey2-version}</version>
180+
</dependency>
181+
<dependency>
182+
<groupId>org.glassfish.jersey.inject</groupId>
183+
<artifactId>jersey-hk2</artifactId>
184+
<version>${jersey2-version}</version>
185+
</dependency>
186+
</dependencies>
187+
</project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,145 @@
1+
/**
2+
* Copyright 2016 SmartBear Software
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
package io.swagger.sample.data;
18+
19+
import io.swagger.sample.model.Category;
20+
import io.swagger.sample.model.Pet;
21+
import io.swagger.sample.model.Tag;
22+
23+
import java.util.List;
24+
import java.util.ArrayList;
25+
26+
public class PetData {
27+
static List<Pet> pets = new ArrayList<Pet>();
28+
static List<Category> categories = new ArrayList<Category>();
29+
30+
static {
31+
categories.add(createCategory(1, "Dogs"));
32+
categories.add(createCategory(2, "Cats"));
33+
categories.add(createCategory(3, "Rabbits"));
34+
categories.add(createCategory(4, "Lions"));
35+
36+
pets.add(createPet(1, categories.get(1), "Cat 1", new String[] {
37+
"url1", "url2" }, new String[] { "tag1", "tag2" }, "available"));
38+
pets.add(createPet(2, categories.get(1), "Cat 2", new String[] {
39+
"url1", "url2" }, new String[] { "tag2", "tag3" }, "available"));
40+
pets.add(createPet(3, categories.get(1), "Cat 3", new String[] {
41+
"url1", "url2" }, new String[] { "tag3", "tag4" }, "pending"));
42+
43+
pets.add(createPet(4, categories.get(0), "Dog 1", new String[] {
44+
"url1", "url2" }, new String[] { "tag1", "tag2" }, "available"));
45+
pets.add(createPet(5, categories.get(0), "Dog 2", new String[] {
46+
"url1", "url2" }, new String[] { "tag2", "tag3" }, "sold"));
47+
pets.add(createPet(6, categories.get(0), "Dog 3", new String[] {
48+
"url1", "url2" }, new String[] { "tag3", "tag4" }, "pending"));
49+
50+
pets.add(createPet(7, categories.get(3), "Lion 1", new String[] {
51+
"url1", "url2" }, new String[] { "tag1", "tag2" }, "available"));
52+
pets.add(createPet(8, categories.get(3), "Lion 2", new String[] {
53+
"url1", "url2" }, new String[] { "tag2", "tag3" }, "available"));
54+
pets.add(createPet(9, categories.get(3), "Lion 3", new String[] {
55+
"url1", "url2" }, new String[] { "tag3", "tag4" }, "available"));
56+
57+
pets.add(createPet(10, categories.get(2), "Rabbit 1", new String[] {
58+
"url1", "url2" }, new String[] { "tag3", "tag4" }, "available"));
59+
}
60+
61+
public Pet getPetById(long petId) {
62+
for (Pet pet : pets) {
63+
if (pet.getId() == petId) {
64+
return pet;
65+
}
66+
}
67+
return null;
68+
}
69+
70+
public List<Pet> findPetByStatus(String status) {
71+
String[] statues = status.split(",");
72+
List<Pet> result = new java.util.ArrayList<Pet>();
73+
for (Pet pet : pets) {
74+
for (String s : statues) {
75+
if (s.equals(pet.getStatus())) {
76+
result.add(pet);
77+
}
78+
}
79+
}
80+
return result;
81+
}
82+
83+
public List<Pet> findPetByTags(String tags) {
84+
String[] tagList = tags.split(",");
85+
List<Pet> result = new java.util.ArrayList<Pet>();
86+
for (Pet pet : pets) {
87+
if (null != pet.getTags()) {
88+
for (Tag tag : pet.getTags()) {
89+
for (String tagListString : tagList) {
90+
if (tagListString.equals(tag.getName()))
91+
result.add(pet);
92+
}
93+
}
94+
}
95+
}
96+
return result;
97+
}
98+
99+
public void addPet(Pet pet) {
100+
if (pets.size() > 0) {
101+
for (int i = pets.size() - 1; i >= 0; i--) {
102+
if (pets.get(i).getId() == pet.getId()) {
103+
pets.remove(i);
104+
}
105+
}
106+
}
107+
pets.add(pet);
108+
}
109+
110+
static Pet createPet(long id, Category cat, String name, String[] urls,
111+
String[] tags, String status) {
112+
Pet pet = new Pet();
113+
pet.setId(id);
114+
pet.setCategory(cat);
115+
pet.setName(name);
116+
if (null != urls) {
117+
List<String> urlObjs = new ArrayList<String>();
118+
for (String urlString : urls) {
119+
urlObjs.add(urlString);
120+
}
121+
pet.setPhotoUrls(urlObjs);
122+
}
123+
List<Tag> tagObjs = new java.util.ArrayList<Tag>();
124+
int i = 0;
125+
if (null != tags) {
126+
for (String tagString : tags) {
127+
i = i + 1;
128+
Tag tag = new Tag();
129+
tag.setId(i);
130+
tag.setName(tagString);
131+
tagObjs.add(tag);
132+
}
133+
}
134+
pet.setTags(tagObjs);
135+
pet.setStatus(status);
136+
return pet;
137+
}
138+
139+
static Category createCategory(long id, String name) {
140+
Category category = new Category();
141+
category.setId(id);
142+
category.setName(name);
143+
return category;
144+
}
145+
}

0 commit comments

Comments
 (0)