Skip to content

Commit ab3a94d

Browse files
author
Guilherme Biff Zarelli
committed
init: project
0 parents  commit ab3a94d

File tree

18 files changed

+1653
-0
lines changed

18 files changed

+1653
-0
lines changed

.github/workflows/maven.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# This workflow will build a Java project with Maven
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
3+
4+
name: Java CI with Maven
5+
6+
on:
7+
push:
8+
branches: [ main ]
9+
pull_request:
10+
branches: [ main ]
11+
12+
jobs:
13+
build:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v2
17+
- name: Set up JDK 11
18+
uses: actions/setup-java@v1
19+
with:
20+
java-version: 11
21+
- name: Build with Maven
22+
run: ./mvnw -B verify coveralls:report -DrepoToken=${{ secrets.COVERALLS_REPO_TOKEN }} --file pom.xml

.gitignore

Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
/target/
2+
!.mvn/wrapper/maven-wrapper.jar
3+
4+
### STS ###
5+
.apt_generated
6+
.classpath
7+
.factorypath
8+
.project
9+
.settings
10+
.springBeans
11+
.sts4-cache
12+
13+
### IntelliJ IDEA ###
14+
.idea
15+
*.iws
16+
*.iml
17+
*.ipr
18+
19+
### NetBeans ###
20+
/nbproject/private/
21+
/build/
22+
/nbbuild/
23+
/dist/
24+
/nbdist/
25+
/.nb-gradle/
26+
27+
### Visual Studio Code ###
28+
.vscode
29+
30+
### Other files
31+
.DS_STORE
32+
33+
/newrelic/CHANGELOG
34+
/newrelic/LICENSE
35+
/newrelic/*.txt
36+
/newrelic/*.md
37+
/newrelic/*.xml
38+
/newrelic/*.xsd
39+
/newrelic/logs
40+
/newrelic/*.jar
41+
/newrelic/nrcerts
42+
43+
44+
HELP.md
45+
target/
46+
!.mvn/wrapper/maven-wrapper.jar
47+
!**/src/main/**/target/
48+
!**/src/test/**/target/
49+
50+
### STS ###
51+
.apt_generated
52+
.classpath
53+
.factorypath
54+
.project
55+
.settings
56+
.springBeans
57+
.sts4-cache
58+
59+
### IntelliJ IDEA ###
60+
.idea
61+
*.iws
62+
*.iml
63+
*.ipr
64+
65+
### NetBeans ###
66+
/nbproject/private/
67+
/nbbuild/
68+
/dist/
69+
/nbdist/
70+
/.nb-gradle/
71+
build/
72+
!**/src/main/**/build/
73+
!**/src/test/**/build/
74+
75+
### VS Code ###
76+
.vscode/
77+
78+
target/
79+
pom.xml.tag
80+
pom.xml.releaseBackup
81+
pom.xml.versionsBackup
82+
pom.xml.next
83+
release.properties
84+
dependency-reduced-pom.xml
85+
buildNumber.properties
86+
.mvn/timing.properties
87+
# https://github.com/takari/maven-wrapper#usage-without-binary-jar
88+
.mvn/wrapper/maven-wrapper.jar
89+
adapter/input/jaxrs-controller-v1/src/main/resources/
90+
91+
### NewRelic ###
92+
/app/quarkus-application/newrelic
Lines changed: 142 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,142 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one
3+
* or more contributor license agreements. See the NOTICE file
4+
* distributed with this work for additional information
5+
* regarding copyright ownership. The ASF licenses this file
6+
* to you under the Apache License, Version 2.0 (the
7+
* "License"); you may not use this file except in compliance
8+
* with the License. You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing,
13+
* software distributed under the License is distributed on an
14+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
* KIND, either express or implied. See the License for the
16+
* specific language governing permissions and limitations
17+
* under the License.
18+
*/
19+
20+
import java.net.*;
21+
import java.io.*;
22+
import java.nio.channels.*;
23+
import java.util.Properties;
24+
25+
public class MavenWrapperDownloader
26+
{
27+
private static final String WRAPPER_VERSION = "3.1.0";
28+
29+
/**
30+
* Default URL to download the maven-wrapper.jar from, if no 'downloadUrl' is provided.
31+
*/
32+
private static final String DEFAULT_DOWNLOAD_URL =
33+
"https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/" + WRAPPER_VERSION
34+
+ "/maven-wrapper-" + WRAPPER_VERSION + ".jar";
35+
36+
/**
37+
* Path to the maven-wrapper.properties file, which might contain a downloadUrl property to use instead of the
38+
* default one.
39+
*/
40+
private static final String MAVEN_WRAPPER_PROPERTIES_PATH = ".mvn/wrapper/maven-wrapper.properties";
41+
42+
/**
43+
* Path where the maven-wrapper.jar will be saved to.
44+
*/
45+
private static final String MAVEN_WRAPPER_JAR_PATH = ".mvn/wrapper/maven-wrapper.jar";
46+
47+
/**
48+
* Name of the property which should be used to override the default download url for the wrapper.
49+
*/
50+
private static final String PROPERTY_NAME_WRAPPER_URL = "wrapperUrl";
51+
52+
public static void main( String args[] )
53+
{
54+
System.out.println( "- Downloader started" );
55+
File baseDirectory = new File( args[0] );
56+
System.out.println( "- Using base directory: " + baseDirectory.getAbsolutePath() );
57+
58+
// If the maven-wrapper.properties exists, read it and check if it contains a custom
59+
// wrapperUrl parameter.
60+
File mavenWrapperPropertyFile = new File( baseDirectory, MAVEN_WRAPPER_PROPERTIES_PATH );
61+
String url = DEFAULT_DOWNLOAD_URL;
62+
if ( mavenWrapperPropertyFile.exists() )
63+
{
64+
FileInputStream mavenWrapperPropertyFileInputStream = null;
65+
try
66+
{
67+
mavenWrapperPropertyFileInputStream = new FileInputStream( mavenWrapperPropertyFile );
68+
Properties mavenWrapperProperties = new Properties();
69+
mavenWrapperProperties.load( mavenWrapperPropertyFileInputStream );
70+
url = mavenWrapperProperties.getProperty( PROPERTY_NAME_WRAPPER_URL, url );
71+
}
72+
catch ( IOException e )
73+
{
74+
System.out.println( "- ERROR loading '" + MAVEN_WRAPPER_PROPERTIES_PATH + "'" );
75+
}
76+
finally
77+
{
78+
try
79+
{
80+
if ( mavenWrapperPropertyFileInputStream != null )
81+
{
82+
mavenWrapperPropertyFileInputStream.close();
83+
}
84+
}
85+
catch ( IOException e )
86+
{
87+
// Ignore ...
88+
}
89+
}
90+
}
91+
System.out.println( "- Downloading from: " + url );
92+
93+
File outputFile = new File( baseDirectory.getAbsolutePath(), MAVEN_WRAPPER_JAR_PATH );
94+
if ( !outputFile.getParentFile().exists() )
95+
{
96+
if ( !outputFile.getParentFile().mkdirs() )
97+
{
98+
System.out.println( "- ERROR creating output directory '" + outputFile.getParentFile().getAbsolutePath()
99+
+ "'" );
100+
}
101+
}
102+
System.out.println( "- Downloading to: " + outputFile.getAbsolutePath() );
103+
try
104+
{
105+
downloadFileFromURL( url, outputFile );
106+
System.out.println( "Done" );
107+
System.exit( 0 );
108+
}
109+
catch ( Throwable e )
110+
{
111+
System.out.println( "- Error downloading" );
112+
e.printStackTrace();
113+
System.exit( 1 );
114+
}
115+
}
116+
117+
private static void downloadFileFromURL( String urlString, File destination )
118+
throws Exception
119+
{
120+
if ( System.getenv( "MVNW_USERNAME" ) != null && System.getenv( "MVNW_PASSWORD" ) != null )
121+
{
122+
String username = System.getenv( "MVNW_USERNAME" );
123+
char[] password = System.getenv( "MVNW_PASSWORD" ).toCharArray();
124+
Authenticator.setDefault( new Authenticator()
125+
{
126+
@Override
127+
protected PasswordAuthentication getPasswordAuthentication()
128+
{
129+
return new PasswordAuthentication( username, password );
130+
}
131+
} );
132+
}
133+
URL website = new URL( urlString );
134+
ReadableByteChannel rbc;
135+
rbc = Channels.newChannel( website.openStream() );
136+
FileOutputStream fos = new FileOutputStream( destination );
137+
fos.getChannel().transferFrom( rbc, 0, Long.MAX_VALUE );
138+
fos.close();
139+
rbc.close();
140+
}
141+
142+
}
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing,
12+
# software distributed under the License is distributed on an
13+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
# KIND, either express or implied. See the License for the
15+
# specific language governing permissions and limitations
16+
# under the License.
17+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.4/apache-maven-3.8.4-bin.zip
18+
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.1.0/maven-wrapper-3.1.0.jar

README.md

Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
![Issues](https://img.shields.io/github/issues/helpdeveloper/gzip-json-jackson.svg)
2+
![Forks](https://img.shields.io/github/forks/helpdeveloper/gzip-json-jackson.svg)
3+
![Stars](https://img.shields.io/github/stars/helpdeveloper/gzip-json-jackson.svg)
4+
![Release Version](https://img.shields.io/github/release/helpdeveloper/gzip-json-jackson.svg)
5+
![WorkFlow](https://github.com/helpdeveloper/gzip-json-jackson/workflows/Java%20CI%20with%20Maven/badge.svg)
6+
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/d492d9f4f03941f1aadfb4094536ef76)](https://www.codacy.com/gh/helpdeveloper/gzip-json-jackson/dashboard?utm_source=github.com&utm_medium=referral&utm_content=helpdeveloper/gzip-json-jackson&utm_campaign=Badge_Grade)
7+
[![Coverage Status](https://coveralls.io/repos/github/helpdeveloper/gzip-json-jackson/badge.svg?branch=main)](https://coveralls.io/github/helpdeveloper/gzip-json-jackson?branch=main)
8+
9+
# GZIP JSON Jackson
10+
11+
**GZIP JSON Compressor with Jackson library.**
12+
13+
This library uses Jackson library to convert your
14+
POJO to a compressed JSON with GZIP.
15+
16+
The goal of this library is to **reduce the size of JSONs generated**.
17+
However, if you have shorter JSON you don't have benefits in size,
18+
because the compressed output will be transformed in BASE64 and
19+
get more extensive than the original JSON.
20+
21+
# Dependency
22+
23+
```xml
24+
<dependencies>
25+
<dependency>
26+
<groupId>com.github.helpdeveloper</groupId>
27+
<artifactId>gzip-json-jackson</artifactId>
28+
<version>{last-release}</version>
29+
</dependency>
30+
</dependencies>
31+
32+
<!-- Include the Jitpack repository -->
33+
<repositories>
34+
<repository>
35+
<id>jitpack.io</id>
36+
<url>https://jitpack.io</url>
37+
</repository>
38+
</repositories>
39+
```
40+
41+
# How to use
42+
43+
Just adding the `GzipSerializable` interface in your
44+
Object that will be converted and use your own `ObjectMapper`
45+
to convert. As we commonly do.
46+
47+
### Sample
48+
49+
- Include `GzipSerializable` in your object:
50+
```java
51+
import br.com.helpdev.gzipjson.GzipSerializable;
52+
53+
class MyPojoClass implements GzipSerializable{
54+
private String name;
55+
//getters and setters
56+
}
57+
```
58+
- Sample using Jackson `ObjectMapper`:
59+
60+
```java
61+
import com.fasterxml.jackson.databind.ObjectMapper;
62+
63+
class MyServiceSample {
64+
65+
private final ObjectMapper objectMapper;
66+
67+
public MyService(final ObjectMapper objectMapper){
68+
this.objectMapper = objectMapper;
69+
}
70+
71+
public String getCompressedJsonFromObject(final MyPojoClass pojo){
72+
return objectMapper.writeValueAsString(pojo);
73+
}
74+
75+
public MyPojoClass getObjectFromCompressedJson(final String compressedJson){
76+
return objectMapper.readValue(compressedJson, MyPojoClass.class);
77+
}
78+
}
79+
```
80+
81+
# Contribute
82+
Pull Requests are welcome. For important changes, open an 'issue' first to discuss what you would like to change. Be sure to update tests as appropriate.
83+
84+
# Developer
85+
Guilherme Biff Zarelli
86+
87+
Blog/Site - https://helpdev.com.br
88+
LinkedIn - https://linkedin.com/in/gbzarelli/
89+
GitHub - https://github.com/gbzarelli
90+
Medium - https://medium.com/@guilherme.zarelli
91+
Email - gbzarelli@helpdev.com.br

0 commit comments

Comments
 (0)