forked from 2pm.tech/traqtor
commit
f06d2ebcb8
@ -0,0 +1,5 @@
|
|||||||
|
*
|
||||||
|
!target/*-runner
|
||||||
|
!target/*-runner.jar
|
||||||
|
!target/lib/*
|
||||||
|
!target/quarkus-app/*
|
||||||
@ -0,0 +1,39 @@
|
|||||||
|
#Maven
|
||||||
|
target/
|
||||||
|
pom.xml.tag
|
||||||
|
pom.xml.releaseBackup
|
||||||
|
pom.xml.versionsBackup
|
||||||
|
release.properties
|
||||||
|
|
||||||
|
# Eclipse
|
||||||
|
.project
|
||||||
|
.classpath
|
||||||
|
.settings/
|
||||||
|
bin/
|
||||||
|
|
||||||
|
# IntelliJ
|
||||||
|
.idea
|
||||||
|
*.ipr
|
||||||
|
*.iml
|
||||||
|
*.iws
|
||||||
|
|
||||||
|
# NetBeans
|
||||||
|
nb-configuration.xml
|
||||||
|
|
||||||
|
# Visual Studio Code
|
||||||
|
.vscode
|
||||||
|
.factorypath
|
||||||
|
|
||||||
|
# OSX
|
||||||
|
.DS_Store
|
||||||
|
|
||||||
|
# Vim
|
||||||
|
*.swp
|
||||||
|
*.swo
|
||||||
|
|
||||||
|
# patch
|
||||||
|
*.orig
|
||||||
|
*.rej
|
||||||
|
|
||||||
|
# Local environment
|
||||||
|
.env
|
||||||
@ -0,0 +1,117 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2007-present the original author or authors.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* https://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
import java.net.*;
|
||||||
|
import java.io.*;
|
||||||
|
import java.nio.channels.*;
|
||||||
|
import java.util.Properties;
|
||||||
|
|
||||||
|
public class MavenWrapperDownloader {
|
||||||
|
|
||||||
|
private static final String WRAPPER_VERSION = "0.5.6";
|
||||||
|
/**
|
||||||
|
* Default URL to download the maven-wrapper.jar from, if no 'downloadUrl' is provided.
|
||||||
|
*/
|
||||||
|
private static final String DEFAULT_DOWNLOAD_URL = "https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/"
|
||||||
|
+ WRAPPER_VERSION + "/maven-wrapper-" + WRAPPER_VERSION + ".jar";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Path to the maven-wrapper.properties file, which might contain a downloadUrl property to
|
||||||
|
* use instead of the default one.
|
||||||
|
*/
|
||||||
|
private static final String MAVEN_WRAPPER_PROPERTIES_PATH =
|
||||||
|
".mvn/wrapper/maven-wrapper.properties";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Path where the maven-wrapper.jar will be saved to.
|
||||||
|
*/
|
||||||
|
private static final String MAVEN_WRAPPER_JAR_PATH =
|
||||||
|
".mvn/wrapper/maven-wrapper.jar";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Name of the property which should be used to override the default download url for the wrapper.
|
||||||
|
*/
|
||||||
|
private static final String PROPERTY_NAME_WRAPPER_URL = "wrapperUrl";
|
||||||
|
|
||||||
|
public static void main(String args[]) {
|
||||||
|
System.out.println("- Downloader started");
|
||||||
|
File baseDirectory = new File(args[0]);
|
||||||
|
System.out.println("- Using base directory: " + baseDirectory.getAbsolutePath());
|
||||||
|
|
||||||
|
// If the maven-wrapper.properties exists, read it and check if it contains a custom
|
||||||
|
// wrapperUrl parameter.
|
||||||
|
File mavenWrapperPropertyFile = new File(baseDirectory, MAVEN_WRAPPER_PROPERTIES_PATH);
|
||||||
|
String url = DEFAULT_DOWNLOAD_URL;
|
||||||
|
if(mavenWrapperPropertyFile.exists()) {
|
||||||
|
FileInputStream mavenWrapperPropertyFileInputStream = null;
|
||||||
|
try {
|
||||||
|
mavenWrapperPropertyFileInputStream = new FileInputStream(mavenWrapperPropertyFile);
|
||||||
|
Properties mavenWrapperProperties = new Properties();
|
||||||
|
mavenWrapperProperties.load(mavenWrapperPropertyFileInputStream);
|
||||||
|
url = mavenWrapperProperties.getProperty(PROPERTY_NAME_WRAPPER_URL, url);
|
||||||
|
} catch (IOException e) {
|
||||||
|
System.out.println("- ERROR loading '" + MAVEN_WRAPPER_PROPERTIES_PATH + "'");
|
||||||
|
} finally {
|
||||||
|
try {
|
||||||
|
if(mavenWrapperPropertyFileInputStream != null) {
|
||||||
|
mavenWrapperPropertyFileInputStream.close();
|
||||||
|
}
|
||||||
|
} catch (IOException e) {
|
||||||
|
// Ignore ...
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
System.out.println("- Downloading from: " + url);
|
||||||
|
|
||||||
|
File outputFile = new File(baseDirectory.getAbsolutePath(), MAVEN_WRAPPER_JAR_PATH);
|
||||||
|
if(!outputFile.getParentFile().exists()) {
|
||||||
|
if(!outputFile.getParentFile().mkdirs()) {
|
||||||
|
System.out.println(
|
||||||
|
"- ERROR creating output directory '" + outputFile.getParentFile().getAbsolutePath() + "'");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
System.out.println("- Downloading to: " + outputFile.getAbsolutePath());
|
||||||
|
try {
|
||||||
|
downloadFileFromURL(url, outputFile);
|
||||||
|
System.out.println("Done");
|
||||||
|
System.exit(0);
|
||||||
|
} catch (Throwable e) {
|
||||||
|
System.out.println("- Error downloading");
|
||||||
|
e.printStackTrace();
|
||||||
|
System.exit(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void downloadFileFromURL(String urlString, File destination) throws Exception {
|
||||||
|
if (System.getenv("MVNW_USERNAME") != null && System.getenv("MVNW_PASSWORD") != null) {
|
||||||
|
String username = System.getenv("MVNW_USERNAME");
|
||||||
|
char[] password = System.getenv("MVNW_PASSWORD").toCharArray();
|
||||||
|
Authenticator.setDefault(new Authenticator() {
|
||||||
|
@Override
|
||||||
|
protected PasswordAuthentication getPasswordAuthentication() {
|
||||||
|
return new PasswordAuthentication(username, password);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
URL website = new URL(urlString);
|
||||||
|
ReadableByteChannel rbc;
|
||||||
|
rbc = Channels.newChannel(website.openStream());
|
||||||
|
FileOutputStream fos = new FileOutputStream(destination);
|
||||||
|
fos.getChannel().transferFrom(rbc, 0, Long.MAX_VALUE);
|
||||||
|
fos.close();
|
||||||
|
rbc.close();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
Binary file not shown.
@ -0,0 +1,2 @@
|
|||||||
|
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.3/apache-maven-3.6.3-bin.zip
|
||||||
|
wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar
|
||||||
@ -0,0 +1,310 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
# ----------------------------------------------------------------------------
|
||||||
|
# Licensed to the Apache Software Foundation (ASF) under one
|
||||||
|
# or more contributor license agreements. See the NOTICE file
|
||||||
|
# distributed with this work for additional information
|
||||||
|
# regarding copyright ownership. The ASF licenses this file
|
||||||
|
# to you under the Apache License, Version 2.0 (the
|
||||||
|
# "License"); you may not use this file except in compliance
|
||||||
|
# with the License. You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# https://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing,
|
||||||
|
# software distributed under the License is distributed on an
|
||||||
|
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
|
# KIND, either express or implied. See the License for the
|
||||||
|
# specific language governing permissions and limitations
|
||||||
|
# under the License.
|
||||||
|
# ----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
# ----------------------------------------------------------------------------
|
||||||
|
# Maven Start Up Batch script
|
||||||
|
#
|
||||||
|
# Required ENV vars:
|
||||||
|
# ------------------
|
||||||
|
# JAVA_HOME - location of a JDK home dir
|
||||||
|
#
|
||||||
|
# Optional ENV vars
|
||||||
|
# -----------------
|
||||||
|
# M2_HOME - location of maven2's installed home dir
|
||||||
|
# MAVEN_OPTS - parameters passed to the Java VM when running Maven
|
||||||
|
# e.g. to debug Maven itself, use
|
||||||
|
# set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
|
||||||
|
# MAVEN_SKIP_RC - flag to disable loading of mavenrc files
|
||||||
|
# ----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
if [ -z "$MAVEN_SKIP_RC" ] ; then
|
||||||
|
|
||||||
|
if [ -f /etc/mavenrc ] ; then
|
||||||
|
. /etc/mavenrc
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -f "$HOME/.mavenrc" ] ; then
|
||||||
|
. "$HOME/.mavenrc"
|
||||||
|
fi
|
||||||
|
|
||||||
|
fi
|
||||||
|
|
||||||
|
# OS specific support. $var _must_ be set to either true or false.
|
||||||
|
cygwin=false;
|
||||||
|
darwin=false;
|
||||||
|
mingw=false
|
||||||
|
case "`uname`" in
|
||||||
|
CYGWIN*) cygwin=true ;;
|
||||||
|
MINGW*) mingw=true;;
|
||||||
|
Darwin*) darwin=true
|
||||||
|
# Use /usr/libexec/java_home if available, otherwise fall back to /Library/Java/Home
|
||||||
|
# See https://developer.apple.com/library/mac/qa/qa1170/_index.html
|
||||||
|
if [ -z "$JAVA_HOME" ]; then
|
||||||
|
if [ -x "/usr/libexec/java_home" ]; then
|
||||||
|
export JAVA_HOME="`/usr/libexec/java_home`"
|
||||||
|
else
|
||||||
|
export JAVA_HOME="/Library/Java/Home"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -z "$JAVA_HOME" ] ; then
|
||||||
|
if [ -r /etc/gentoo-release ] ; then
|
||||||
|
JAVA_HOME=`java-config --jre-home`
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -z "$M2_HOME" ] ; then
|
||||||
|
## resolve links - $0 may be a link to maven's home
|
||||||
|
PRG="$0"
|
||||||
|
|
||||||
|
# need this for relative symlinks
|
||||||
|
while [ -h "$PRG" ] ; do
|
||||||
|
ls=`ls -ld "$PRG"`
|
||||||
|
link=`expr "$ls" : '.*-> \(.*\)$'`
|
||||||
|
if expr "$link" : '/.*' > /dev/null; then
|
||||||
|
PRG="$link"
|
||||||
|
else
|
||||||
|
PRG="`dirname "$PRG"`/$link"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
saveddir=`pwd`
|
||||||
|
|
||||||
|
M2_HOME=`dirname "$PRG"`/..
|
||||||
|
|
||||||
|
# make it fully qualified
|
||||||
|
M2_HOME=`cd "$M2_HOME" && pwd`
|
||||||
|
|
||||||
|
cd "$saveddir"
|
||||||
|
# echo Using m2 at $M2_HOME
|
||||||
|
fi
|
||||||
|
|
||||||
|
# For Cygwin, ensure paths are in UNIX format before anything is touched
|
||||||
|
if $cygwin ; then
|
||||||
|
[ -n "$M2_HOME" ] &&
|
||||||
|
M2_HOME=`cygpath --unix "$M2_HOME"`
|
||||||
|
[ -n "$JAVA_HOME" ] &&
|
||||||
|
JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
|
||||||
|
[ -n "$CLASSPATH" ] &&
|
||||||
|
CLASSPATH=`cygpath --path --unix "$CLASSPATH"`
|
||||||
|
fi
|
||||||
|
|
||||||
|
# For Mingw, ensure paths are in UNIX format before anything is touched
|
||||||
|
if $mingw ; then
|
||||||
|
[ -n "$M2_HOME" ] &&
|
||||||
|
M2_HOME="`(cd "$M2_HOME"; pwd)`"
|
||||||
|
[ -n "$JAVA_HOME" ] &&
|
||||||
|
JAVA_HOME="`(cd "$JAVA_HOME"; pwd)`"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -z "$JAVA_HOME" ]; then
|
||||||
|
javaExecutable="`which javac`"
|
||||||
|
if [ -n "$javaExecutable" ] && ! [ "`expr \"$javaExecutable\" : '\([^ ]*\)'`" = "no" ]; then
|
||||||
|
# readlink(1) is not available as standard on Solaris 10.
|
||||||
|
readLink=`which readlink`
|
||||||
|
if [ ! `expr "$readLink" : '\([^ ]*\)'` = "no" ]; then
|
||||||
|
if $darwin ; then
|
||||||
|
javaHome="`dirname \"$javaExecutable\"`"
|
||||||
|
javaExecutable="`cd \"$javaHome\" && pwd -P`/javac"
|
||||||
|
else
|
||||||
|
javaExecutable="`readlink -f \"$javaExecutable\"`"
|
||||||
|
fi
|
||||||
|
javaHome="`dirname \"$javaExecutable\"`"
|
||||||
|
javaHome=`expr "$javaHome" : '\(.*\)/bin'`
|
||||||
|
JAVA_HOME="$javaHome"
|
||||||
|
export JAVA_HOME
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -z "$JAVACMD" ] ; then
|
||||||
|
if [ -n "$JAVA_HOME" ] ; then
|
||||||
|
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
|
||||||
|
# IBM's JDK on AIX uses strange locations for the executables
|
||||||
|
JAVACMD="$JAVA_HOME/jre/sh/java"
|
||||||
|
else
|
||||||
|
JAVACMD="$JAVA_HOME/bin/java"
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
JAVACMD="`which java`"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -x "$JAVACMD" ] ; then
|
||||||
|
echo "Error: JAVA_HOME is not defined correctly." >&2
|
||||||
|
echo " We cannot execute $JAVACMD" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -z "$JAVA_HOME" ] ; then
|
||||||
|
echo "Warning: JAVA_HOME environment variable is not set."
|
||||||
|
fi
|
||||||
|
|
||||||
|
CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher
|
||||||
|
|
||||||
|
# traverses directory structure from process work directory to filesystem root
|
||||||
|
# first directory with .mvn subdirectory is considered project base directory
|
||||||
|
find_maven_basedir() {
|
||||||
|
|
||||||
|
if [ -z "$1" ]
|
||||||
|
then
|
||||||
|
echo "Path not specified to find_maven_basedir"
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
basedir="$1"
|
||||||
|
wdir="$1"
|
||||||
|
while [ "$wdir" != '/' ] ; do
|
||||||
|
if [ -d "$wdir"/.mvn ] ; then
|
||||||
|
basedir=$wdir
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
# workaround for JBEAP-8937 (on Solaris 10/Sparc)
|
||||||
|
if [ -d "${wdir}" ]; then
|
||||||
|
wdir=`cd "$wdir/.."; pwd`
|
||||||
|
fi
|
||||||
|
# end of workaround
|
||||||
|
done
|
||||||
|
echo "${basedir}"
|
||||||
|
}
|
||||||
|
|
||||||
|
# concatenates all lines of a file
|
||||||
|
concat_lines() {
|
||||||
|
if [ -f "$1" ]; then
|
||||||
|
echo "$(tr -s '\n' ' ' < "$1")"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
BASE_DIR=`find_maven_basedir "$(pwd)"`
|
||||||
|
if [ -z "$BASE_DIR" ]; then
|
||||||
|
exit 1;
|
||||||
|
fi
|
||||||
|
|
||||||
|
##########################################################################################
|
||||||
|
# Extension to allow automatically downloading the maven-wrapper.jar from Maven-central
|
||||||
|
# This allows using the maven wrapper in projects that prohibit checking in binary data.
|
||||||
|
##########################################################################################
|
||||||
|
if [ -r "$BASE_DIR/.mvn/wrapper/maven-wrapper.jar" ]; then
|
||||||
|
if [ "$MVNW_VERBOSE" = true ]; then
|
||||||
|
echo "Found .mvn/wrapper/maven-wrapper.jar"
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
if [ "$MVNW_VERBOSE" = true ]; then
|
||||||
|
echo "Couldn't find .mvn/wrapper/maven-wrapper.jar, downloading it ..."
|
||||||
|
fi
|
||||||
|
if [ -n "$MVNW_REPOURL" ]; then
|
||||||
|
jarUrl="$MVNW_REPOURL/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar"
|
||||||
|
else
|
||||||
|
jarUrl="https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar"
|
||||||
|
fi
|
||||||
|
while IFS="=" read key value; do
|
||||||
|
case "$key" in (wrapperUrl) jarUrl="$value"; break ;;
|
||||||
|
esac
|
||||||
|
done < "$BASE_DIR/.mvn/wrapper/maven-wrapper.properties"
|
||||||
|
if [ "$MVNW_VERBOSE" = true ]; then
|
||||||
|
echo "Downloading from: $jarUrl"
|
||||||
|
fi
|
||||||
|
wrapperJarPath="$BASE_DIR/.mvn/wrapper/maven-wrapper.jar"
|
||||||
|
if $cygwin; then
|
||||||
|
wrapperJarPath=`cygpath --path --windows "$wrapperJarPath"`
|
||||||
|
fi
|
||||||
|
|
||||||
|
if command -v wget > /dev/null; then
|
||||||
|
if [ "$MVNW_VERBOSE" = true ]; then
|
||||||
|
echo "Found wget ... using wget"
|
||||||
|
fi
|
||||||
|
if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then
|
||||||
|
wget "$jarUrl" -O "$wrapperJarPath"
|
||||||
|
else
|
||||||
|
wget --http-user=$MVNW_USERNAME --http-password=$MVNW_PASSWORD "$jarUrl" -O "$wrapperJarPath"
|
||||||
|
fi
|
||||||
|
elif command -v curl > /dev/null; then
|
||||||
|
if [ "$MVNW_VERBOSE" = true ]; then
|
||||||
|
echo "Found curl ... using curl"
|
||||||
|
fi
|
||||||
|
if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then
|
||||||
|
curl -o "$wrapperJarPath" "$jarUrl" -f
|
||||||
|
else
|
||||||
|
curl --user $MVNW_USERNAME:$MVNW_PASSWORD -o "$wrapperJarPath" "$jarUrl" -f
|
||||||
|
fi
|
||||||
|
|
||||||
|
else
|
||||||
|
if [ "$MVNW_VERBOSE" = true ]; then
|
||||||
|
echo "Falling back to using Java to download"
|
||||||
|
fi
|
||||||
|
javaClass="$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.java"
|
||||||
|
# For Cygwin, switch paths to Windows format before running javac
|
||||||
|
if $cygwin; then
|
||||||
|
javaClass=`cygpath --path --windows "$javaClass"`
|
||||||
|
fi
|
||||||
|
if [ -e "$javaClass" ]; then
|
||||||
|
if [ ! -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then
|
||||||
|
if [ "$MVNW_VERBOSE" = true ]; then
|
||||||
|
echo " - Compiling MavenWrapperDownloader.java ..."
|
||||||
|
fi
|
||||||
|
# Compiling the Java class
|
||||||
|
("$JAVA_HOME/bin/javac" "$javaClass")
|
||||||
|
fi
|
||||||
|
if [ -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then
|
||||||
|
# Running the downloader
|
||||||
|
if [ "$MVNW_VERBOSE" = true ]; then
|
||||||
|
echo " - Running MavenWrapperDownloader.java ..."
|
||||||
|
fi
|
||||||
|
("$JAVA_HOME/bin/java" -cp .mvn/wrapper MavenWrapperDownloader "$MAVEN_PROJECTBASEDIR")
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
##########################################################################################
|
||||||
|
# End of extension
|
||||||
|
##########################################################################################
|
||||||
|
|
||||||
|
export MAVEN_PROJECTBASEDIR=${MAVEN_BASEDIR:-"$BASE_DIR"}
|
||||||
|
if [ "$MVNW_VERBOSE" = true ]; then
|
||||||
|
echo $MAVEN_PROJECTBASEDIR
|
||||||
|
fi
|
||||||
|
MAVEN_OPTS="$(concat_lines "$MAVEN_PROJECTBASEDIR/.mvn/jvm.config") $MAVEN_OPTS"
|
||||||
|
|
||||||
|
# For Cygwin, switch paths to Windows format before running java
|
||||||
|
if $cygwin; then
|
||||||
|
[ -n "$M2_HOME" ] &&
|
||||||
|
M2_HOME=`cygpath --path --windows "$M2_HOME"`
|
||||||
|
[ -n "$JAVA_HOME" ] &&
|
||||||
|
JAVA_HOME=`cygpath --path --windows "$JAVA_HOME"`
|
||||||
|
[ -n "$CLASSPATH" ] &&
|
||||||
|
CLASSPATH=`cygpath --path --windows "$CLASSPATH"`
|
||||||
|
[ -n "$MAVEN_PROJECTBASEDIR" ] &&
|
||||||
|
MAVEN_PROJECTBASEDIR=`cygpath --path --windows "$MAVEN_PROJECTBASEDIR"`
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Provide a "standardized" way to retrieve the CLI args that will
|
||||||
|
# work with both Windows and non-Windows executions.
|
||||||
|
MAVEN_CMD_LINE_ARGS="$MAVEN_CONFIG $@"
|
||||||
|
export MAVEN_CMD_LINE_ARGS
|
||||||
|
|
||||||
|
WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain
|
||||||
|
|
||||||
|
exec "$JAVACMD" \
|
||||||
|
$MAVEN_OPTS \
|
||||||
|
-classpath "$MAVEN_PROJECTBASEDIR/.mvn/wrapper/maven-wrapper.jar" \
|
||||||
|
"-Dmaven.home=${M2_HOME}" "-Dmaven.multiModuleProjectDirectory=${MAVEN_PROJECTBASEDIR}" \
|
||||||
|
${WRAPPER_LAUNCHER} $MAVEN_CONFIG "$@"
|
||||||
@ -0,0 +1,182 @@
|
|||||||
|
@REM ----------------------------------------------------------------------------
|
||||||
|
@REM Licensed to the Apache Software Foundation (ASF) under one
|
||||||
|
@REM or more contributor license agreements. See the NOTICE file
|
||||||
|
@REM distributed with this work for additional information
|
||||||
|
@REM regarding copyright ownership. The ASF licenses this file
|
||||||
|
@REM to you under the Apache License, Version 2.0 (the
|
||||||
|
@REM "License"); you may not use this file except in compliance
|
||||||
|
@REM with the License. You may obtain a copy of the License at
|
||||||
|
@REM
|
||||||
|
@REM https://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
@REM
|
||||||
|
@REM Unless required by applicable law or agreed to in writing,
|
||||||
|
@REM software distributed under the License is distributed on an
|
||||||
|
@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
|
@REM KIND, either express or implied. See the License for the
|
||||||
|
@REM specific language governing permissions and limitations
|
||||||
|
@REM under the License.
|
||||||
|
@REM ----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
@REM ----------------------------------------------------------------------------
|
||||||
|
@REM Maven Start Up Batch script
|
||||||
|
@REM
|
||||||
|
@REM Required ENV vars:
|
||||||
|
@REM JAVA_HOME - location of a JDK home dir
|
||||||
|
@REM
|
||||||
|
@REM Optional ENV vars
|
||||||
|
@REM M2_HOME - location of maven2's installed home dir
|
||||||
|
@REM MAVEN_BATCH_ECHO - set to 'on' to enable the echoing of the batch commands
|
||||||
|
@REM MAVEN_BATCH_PAUSE - set to 'on' to wait for a keystroke before ending
|
||||||
|
@REM MAVEN_OPTS - parameters passed to the Java VM when running Maven
|
||||||
|
@REM e.g. to debug Maven itself, use
|
||||||
|
@REM set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
|
||||||
|
@REM MAVEN_SKIP_RC - flag to disable loading of mavenrc files
|
||||||
|
@REM ----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
@REM Begin all REM lines with '@' in case MAVEN_BATCH_ECHO is 'on'
|
||||||
|
@echo off
|
||||||
|
@REM set title of command window
|
||||||
|
title %0
|
||||||
|
@REM enable echoing by setting MAVEN_BATCH_ECHO to 'on'
|
||||||
|
@if "%MAVEN_BATCH_ECHO%" == "on" echo %MAVEN_BATCH_ECHO%
|
||||||
|
|
||||||
|
@REM set %HOME% to equivalent of $HOME
|
||||||
|
if "%HOME%" == "" (set "HOME=%HOMEDRIVE%%HOMEPATH%")
|
||||||
|
|
||||||
|
@REM Execute a user defined script before this one
|
||||||
|
if not "%MAVEN_SKIP_RC%" == "" goto skipRcPre
|
||||||
|
@REM check for pre script, once with legacy .bat ending and once with .cmd ending
|
||||||
|
if exist "%HOME%\mavenrc_pre.bat" call "%HOME%\mavenrc_pre.bat"
|
||||||
|
if exist "%HOME%\mavenrc_pre.cmd" call "%HOME%\mavenrc_pre.cmd"
|
||||||
|
:skipRcPre
|
||||||
|
|
||||||
|
@setlocal
|
||||||
|
|
||||||
|
set ERROR_CODE=0
|
||||||
|
|
||||||
|
@REM To isolate internal variables from possible post scripts, we use another setlocal
|
||||||
|
@setlocal
|
||||||
|
|
||||||
|
@REM ==== START VALIDATION ====
|
||||||
|
if not "%JAVA_HOME%" == "" goto OkJHome
|
||||||
|
|
||||||
|
echo.
|
||||||
|
echo Error: JAVA_HOME not found in your environment. >&2
|
||||||
|
echo Please set the JAVA_HOME variable in your environment to match the >&2
|
||||||
|
echo location of your Java installation. >&2
|
||||||
|
echo.
|
||||||
|
goto error
|
||||||
|
|
||||||
|
:OkJHome
|
||||||
|
if exist "%JAVA_HOME%\bin\java.exe" goto init
|
||||||
|
|
||||||
|
echo.
|
||||||
|
echo Error: JAVA_HOME is set to an invalid directory. >&2
|
||||||
|
echo JAVA_HOME = "%JAVA_HOME%" >&2
|
||||||
|
echo Please set the JAVA_HOME variable in your environment to match the >&2
|
||||||
|
echo location of your Java installation. >&2
|
||||||
|
echo.
|
||||||
|
goto error
|
||||||
|
|
||||||
|
@REM ==== END VALIDATION ====
|
||||||
|
|
||||||
|
:init
|
||||||
|
|
||||||
|
@REM Find the project base dir, i.e. the directory that contains the folder ".mvn".
|
||||||
|
@REM Fallback to current working directory if not found.
|
||||||
|
|
||||||
|
set MAVEN_PROJECTBASEDIR=%MAVEN_BASEDIR%
|
||||||
|
IF NOT "%MAVEN_PROJECTBASEDIR%"=="" goto endDetectBaseDir
|
||||||
|
|
||||||
|
set EXEC_DIR=%CD%
|
||||||
|
set WDIR=%EXEC_DIR%
|
||||||
|
:findBaseDir
|
||||||
|
IF EXIST "%WDIR%"\.mvn goto baseDirFound
|
||||||
|
cd ..
|
||||||
|
IF "%WDIR%"=="%CD%" goto baseDirNotFound
|
||||||
|
set WDIR=%CD%
|
||||||
|
goto findBaseDir
|
||||||
|
|
||||||
|
:baseDirFound
|
||||||
|
set MAVEN_PROJECTBASEDIR=%WDIR%
|
||||||
|
cd "%EXEC_DIR%"
|
||||||
|
goto endDetectBaseDir
|
||||||
|
|
||||||
|
:baseDirNotFound
|
||||||
|
set MAVEN_PROJECTBASEDIR=%EXEC_DIR%
|
||||||
|
cd "%EXEC_DIR%"
|
||||||
|
|
||||||
|
:endDetectBaseDir
|
||||||
|
|
||||||
|
IF NOT EXIST "%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config" goto endReadAdditionalConfig
|
||||||
|
|
||||||
|
@setlocal EnableExtensions EnableDelayedExpansion
|
||||||
|
for /F "usebackq delims=" %%a in ("%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config") do set JVM_CONFIG_MAVEN_PROPS=!JVM_CONFIG_MAVEN_PROPS! %%a
|
||||||
|
@endlocal & set JVM_CONFIG_MAVEN_PROPS=%JVM_CONFIG_MAVEN_PROPS%
|
||||||
|
|
||||||
|
:endReadAdditionalConfig
|
||||||
|
|
||||||
|
SET MAVEN_JAVA_EXE="%JAVA_HOME%\bin\java.exe"
|
||||||
|
set WRAPPER_JAR="%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.jar"
|
||||||
|
set WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain
|
||||||
|
|
||||||
|
set DOWNLOAD_URL="https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar"
|
||||||
|
|
||||||
|
FOR /F "tokens=1,2 delims==" %%A IN ("%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.properties") DO (
|
||||||
|
IF "%%A"=="wrapperUrl" SET DOWNLOAD_URL=%%B
|
||||||
|
)
|
||||||
|
|
||||||
|
@REM Extension to allow automatically downloading the maven-wrapper.jar from Maven-central
|
||||||
|
@REM This allows using the maven wrapper in projects that prohibit checking in binary data.
|
||||||
|
if exist %WRAPPER_JAR% (
|
||||||
|
if "%MVNW_VERBOSE%" == "true" (
|
||||||
|
echo Found %WRAPPER_JAR%
|
||||||
|
)
|
||||||
|
) else (
|
||||||
|
if not "%MVNW_REPOURL%" == "" (
|
||||||
|
SET DOWNLOAD_URL="%MVNW_REPOURL%/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar"
|
||||||
|
)
|
||||||
|
if "%MVNW_VERBOSE%" == "true" (
|
||||||
|
echo Couldn't find %WRAPPER_JAR%, downloading it ...
|
||||||
|
echo Downloading from: %DOWNLOAD_URL%
|
||||||
|
)
|
||||||
|
|
||||||
|
powershell -Command "&{"^
|
||||||
|
"$webclient = new-object System.Net.WebClient;"^
|
||||||
|
"if (-not ([string]::IsNullOrEmpty('%MVNW_USERNAME%') -and [string]::IsNullOrEmpty('%MVNW_PASSWORD%'))) {"^
|
||||||
|
"$webclient.Credentials = new-object System.Net.NetworkCredential('%MVNW_USERNAME%', '%MVNW_PASSWORD%');"^
|
||||||
|
"}"^
|
||||||
|
"[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; $webclient.DownloadFile('%DOWNLOAD_URL%', '%WRAPPER_JAR%')"^
|
||||||
|
"}"
|
||||||
|
if "%MVNW_VERBOSE%" == "true" (
|
||||||
|
echo Finished downloading %WRAPPER_JAR%
|
||||||
|
)
|
||||||
|
)
|
||||||
|
@REM End of extension
|
||||||
|
|
||||||
|
@REM Provide a "standardized" way to retrieve the CLI args that will
|
||||||
|
@REM work with both Windows and non-Windows executions.
|
||||||
|
set MAVEN_CMD_LINE_ARGS=%*
|
||||||
|
|
||||||
|
%MAVEN_JAVA_EXE% %JVM_CONFIG_MAVEN_PROPS% %MAVEN_OPTS% %MAVEN_DEBUG_OPTS% -classpath %WRAPPER_JAR% "-Dmaven.multiModuleProjectDirectory=%MAVEN_PROJECTBASEDIR%" %WRAPPER_LAUNCHER% %MAVEN_CONFIG% %*
|
||||||
|
if ERRORLEVEL 1 goto error
|
||||||
|
goto end
|
||||||
|
|
||||||
|
:error
|
||||||
|
set ERROR_CODE=1
|
||||||
|
|
||||||
|
:end
|
||||||
|
@endlocal & set ERROR_CODE=%ERROR_CODE%
|
||||||
|
|
||||||
|
if not "%MAVEN_SKIP_RC%" == "" goto skipRcPost
|
||||||
|
@REM check for post script, once with legacy .bat ending and once with .cmd ending
|
||||||
|
if exist "%HOME%\mavenrc_post.bat" call "%HOME%\mavenrc_post.bat"
|
||||||
|
if exist "%HOME%\mavenrc_post.cmd" call "%HOME%\mavenrc_post.cmd"
|
||||||
|
:skipRcPost
|
||||||
|
|
||||||
|
@REM pause the script if MAVEN_BATCH_PAUSE is set to 'on'
|
||||||
|
if "%MAVEN_BATCH_PAUSE%" == "on" pause
|
||||||
|
|
||||||
|
if "%MAVEN_TERMINATE_CMD%" == "on" exit %ERROR_CODE%
|
||||||
|
|
||||||
|
exit /B %ERROR_CODE%
|
||||||
@ -0,0 +1,144 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<groupId>two.pm.tools</groupId>
|
||||||
|
<artifactId>traqtor-core</artifactId>
|
||||||
|
<version>0.0.1-alpha</version>
|
||||||
|
<properties>
|
||||||
|
<compiler-plugin.version>3.8.1</compiler-plugin.version>
|
||||||
|
<maven.compiler.parameters>true</maven.compiler.parameters>
|
||||||
|
<maven.compiler.source>11</maven.compiler.source>
|
||||||
|
<maven.compiler.target>11</maven.compiler.target>
|
||||||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||||||
|
<quarkus-plugin.version>1.11.1.Final</quarkus-plugin.version>
|
||||||
|
<quarkus.platform.artifact-id>quarkus-universe-bom</quarkus.platform.artifact-id>
|
||||||
|
<quarkus.platform.group-id>io.quarkus</quarkus.platform.group-id>
|
||||||
|
<quarkus.platform.version>1.11.1.Final</quarkus.platform.version>
|
||||||
|
<surefire-plugin.version>2.22.1</surefire-plugin.version>
|
||||||
|
</properties>
|
||||||
|
<dependencyManagement>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>${quarkus.platform.group-id}</groupId>
|
||||||
|
<artifactId>${quarkus.platform.artifact-id}</artifactId>
|
||||||
|
<version>${quarkus.platform.version}</version>
|
||||||
|
<type>pom</type>
|
||||||
|
<scope>import</scope>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</dependencyManagement>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.quarkus</groupId>
|
||||||
|
<artifactId>quarkus-arc</artifactId>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.quarkus</groupId>
|
||||||
|
<artifactId>quarkus-resteasy</artifactId>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.quarkus</groupId>
|
||||||
|
<artifactId>quarkus-resteasy-jackson</artifactId>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.quarkus</groupId>
|
||||||
|
<artifactId>quarkus-smallrye-openapi</artifactId>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.h2database</groupId>
|
||||||
|
<artifactId>h2</artifactId>
|
||||||
|
<version>1.4.198</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.cayenne</groupId>
|
||||||
|
<artifactId>cayenne-server</artifactId>
|
||||||
|
<version>4.1</version>
|
||||||
|
</dependency>
|
||||||
|
<!-- <dependency>
|
||||||
|
<groupId>org.apache.cayenne</groupId>
|
||||||
|
<artifactId>cayenne-crypto</artifactId>
|
||||||
|
<version>4.1</version>
|
||||||
|
</dependency> -->
|
||||||
|
|
||||||
|
<!-- <dependency>
|
||||||
|
<groupId>io.quarkus</groupId>
|
||||||
|
<artifactId>quarkus-junit5</artifactId>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.rest-assured</groupId>
|
||||||
|
<artifactId>rest-assured</artifactId>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency> -->
|
||||||
|
</dependencies>
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>io.quarkus</groupId>
|
||||||
|
<artifactId>quarkus-maven-plugin</artifactId>
|
||||||
|
<version>${quarkus-plugin.version}</version>
|
||||||
|
<extensions>true</extensions>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<goals>
|
||||||
|
<goal>build</goal>
|
||||||
|
<goal>generate-code</goal>
|
||||||
|
<goal>generate-code-tests</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
|
<version>${compiler-plugin.version}</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-surefire-plugin</artifactId>
|
||||||
|
<version>${surefire-plugin.version}</version>
|
||||||
|
<configuration>
|
||||||
|
<systemPropertyVariables>
|
||||||
|
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
|
||||||
|
<maven.home>${maven.home}</maven.home>
|
||||||
|
</systemPropertyVariables>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
<profiles>
|
||||||
|
<profile>
|
||||||
|
<id>native</id>
|
||||||
|
<activation>
|
||||||
|
<property>
|
||||||
|
<name>native</name>
|
||||||
|
</property>
|
||||||
|
</activation>
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-failsafe-plugin</artifactId>
|
||||||
|
<version>${surefire-plugin.version}</version>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<goals>
|
||||||
|
<goal>integration-test</goal>
|
||||||
|
<goal>verify</goal>
|
||||||
|
</goals>
|
||||||
|
<configuration>
|
||||||
|
<systemPropertyVariables>
|
||||||
|
<native.image.path>${project.build.directory}/${project.build.finalName}-runner</native.image.path>
|
||||||
|
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
|
||||||
|
<maven.home>${maven.home}</maven.home>
|
||||||
|
</systemPropertyVariables>
|
||||||
|
</configuration>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
<properties>
|
||||||
|
<quarkus.package.type>native</quarkus.package.type>
|
||||||
|
</properties>
|
||||||
|
</profile>
|
||||||
|
</profiles>
|
||||||
|
</project>
|
||||||
@ -0,0 +1,54 @@
|
|||||||
|
####
|
||||||
|
# This Dockerfile is used in order to build a container that runs the Quarkus application in JVM mode
|
||||||
|
#
|
||||||
|
# Before building the container image run:
|
||||||
|
#
|
||||||
|
# ./mvnw package -Dquarkus.package.type=fast-jar
|
||||||
|
#
|
||||||
|
# Then, build the image with:
|
||||||
|
#
|
||||||
|
# docker build -f src/main/docker/Dockerfile.fast-jar -t quarkus/my-artifactId-fast-jar .
|
||||||
|
#
|
||||||
|
# Then run the container using:
|
||||||
|
#
|
||||||
|
# docker run -i --rm -p 8080:8080 quarkus/my-artifactId-fast-jar
|
||||||
|
#
|
||||||
|
# If you want to include the debug port into your docker image
|
||||||
|
# you will have to expose the debug port (default 5005) like this : EXPOSE 8080 5050
|
||||||
|
#
|
||||||
|
# Then run the container using :
|
||||||
|
#
|
||||||
|
# docker run -i --rm -p 8080:8080 -p 5005:5005 -e JAVA_ENABLE_DEBUG="true" quarkus/my-artifactId-fast-jar
|
||||||
|
#
|
||||||
|
###
|
||||||
|
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.3
|
||||||
|
|
||||||
|
ARG JAVA_PACKAGE=java-11-openjdk-headless
|
||||||
|
ARG RUN_JAVA_VERSION=1.3.8
|
||||||
|
ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en'
|
||||||
|
# Install java and the run-java script
|
||||||
|
# Also set up permissions for user `1001`
|
||||||
|
RUN microdnf install curl ca-certificates ${JAVA_PACKAGE} \
|
||||||
|
&& microdnf update \
|
||||||
|
&& microdnf clean all \
|
||||||
|
&& mkdir /deployments \
|
||||||
|
&& chown 1001 /deployments \
|
||||||
|
&& chmod "g+rwX" /deployments \
|
||||||
|
&& chown 1001:root /deployments \
|
||||||
|
&& curl https://repo1.maven.org/maven2/io/fabric8/run-java-sh/${RUN_JAVA_VERSION}/run-java-sh-${RUN_JAVA_VERSION}-sh.sh -o /deployments/run-java.sh \
|
||||||
|
&& chown 1001 /deployments/run-java.sh \
|
||||||
|
&& chmod 540 /deployments/run-java.sh \
|
||||||
|
&& echo "securerandom.source=file:/dev/urandom" >> /etc/alternatives/jre/lib/security/java.security
|
||||||
|
|
||||||
|
# Configure the JAVA_OPTIONS, you can add -XshowSettings:vm to also display the heap size.
|
||||||
|
ENV JAVA_OPTIONS="-Dquarkus.http.host=0.0.0.0 -Djava.util.logging.manager=org.jboss.logmanager.LogManager"
|
||||||
|
# We make four distinct layers so if there are application changes the library layers can be re-used
|
||||||
|
COPY --chown=1001 target/quarkus-app/lib/ /deployments/lib/
|
||||||
|
COPY --chown=1001 target/quarkus-app/*.jar /deployments/
|
||||||
|
COPY --chown=1001 target/quarkus-app/app/ /deployments/app/
|
||||||
|
COPY --chown=1001 target/quarkus-app/quarkus/ /deployments/quarkus/
|
||||||
|
|
||||||
|
EXPOSE 8080
|
||||||
|
USER 1001
|
||||||
|
|
||||||
|
ENTRYPOINT [ "/deployments/run-java.sh" ]
|
||||||
@ -0,0 +1,51 @@
|
|||||||
|
####
|
||||||
|
# This Dockerfile is used in order to build a container that runs the Quarkus application in JVM mode
|
||||||
|
#
|
||||||
|
# Before building the container image run:
|
||||||
|
#
|
||||||
|
# ./mvnw package
|
||||||
|
#
|
||||||
|
# Then, build the image with:
|
||||||
|
#
|
||||||
|
# docker build -f src/main/docker/Dockerfile.jvm -t quarkus/my-artifactId-jvm .
|
||||||
|
#
|
||||||
|
# Then run the container using:
|
||||||
|
#
|
||||||
|
# docker run -i --rm -p 8080:8080 quarkus/my-artifactId-jvm
|
||||||
|
#
|
||||||
|
# If you want to include the debug port into your docker image
|
||||||
|
# you will have to expose the debug port (default 5005) like this : EXPOSE 8080 5050
|
||||||
|
#
|
||||||
|
# Then run the container using :
|
||||||
|
#
|
||||||
|
# docker run -i --rm -p 8080:8080 -p 5005:5005 -e JAVA_ENABLE_DEBUG="true" quarkus/my-artifactId-jvm
|
||||||
|
#
|
||||||
|
###
|
||||||
|
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.3
|
||||||
|
|
||||||
|
ARG JAVA_PACKAGE=java-11-openjdk-headless
|
||||||
|
ARG RUN_JAVA_VERSION=1.3.8
|
||||||
|
ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en'
|
||||||
|
# Install java and the run-java script
|
||||||
|
# Also set up permissions for user `1001`
|
||||||
|
RUN microdnf install curl ca-certificates ${JAVA_PACKAGE} \
|
||||||
|
&& microdnf update \
|
||||||
|
&& microdnf clean all \
|
||||||
|
&& mkdir /deployments \
|
||||||
|
&& chown 1001 /deployments \
|
||||||
|
&& chmod "g+rwX" /deployments \
|
||||||
|
&& chown 1001:root /deployments \
|
||||||
|
&& curl https://repo1.maven.org/maven2/io/fabric8/run-java-sh/${RUN_JAVA_VERSION}/run-java-sh-${RUN_JAVA_VERSION}-sh.sh -o /deployments/run-java.sh \
|
||||||
|
&& chown 1001 /deployments/run-java.sh \
|
||||||
|
&& chmod 540 /deployments/run-java.sh \
|
||||||
|
&& echo "securerandom.source=file:/dev/urandom" >> /etc/alternatives/jre/lib/security/java.security
|
||||||
|
|
||||||
|
# Configure the JAVA_OPTIONS, you can add -XshowSettings:vm to also display the heap size.
|
||||||
|
ENV JAVA_OPTIONS="-Dquarkus.http.host=0.0.0.0 -Djava.util.logging.manager=org.jboss.logmanager.LogManager"
|
||||||
|
COPY target/lib/* /deployments/lib/
|
||||||
|
COPY target/*-runner.jar /deployments/app.jar
|
||||||
|
|
||||||
|
EXPOSE 8080
|
||||||
|
USER 1001
|
||||||
|
|
||||||
|
ENTRYPOINT [ "/deployments/run-java.sh" ]
|
||||||
@ -0,0 +1,27 @@
|
|||||||
|
####
|
||||||
|
# This Dockerfile is used in order to build a container that runs the Quarkus application in native (no JVM) mode
|
||||||
|
#
|
||||||
|
# Before building the container image run:
|
||||||
|
#
|
||||||
|
# ./mvnw package -Pnative
|
||||||
|
#
|
||||||
|
# Then, build the image with:
|
||||||
|
#
|
||||||
|
# docker build -f src/main/docker/Dockerfile.native -t quarkus/my-artifactId .
|
||||||
|
#
|
||||||
|
# Then run the container using:
|
||||||
|
#
|
||||||
|
# docker run -i --rm -p 8080:8080 quarkus/my-artifactId
|
||||||
|
#
|
||||||
|
###
|
||||||
|
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.3
|
||||||
|
WORKDIR /work/
|
||||||
|
RUN chown 1001 /work \
|
||||||
|
&& chmod "g+rwX" /work \
|
||||||
|
&& chown 1001:root /work
|
||||||
|
COPY --chown=1001:root target/*-runner /work/application
|
||||||
|
|
||||||
|
EXPOSE 8080
|
||||||
|
USER 1001
|
||||||
|
|
||||||
|
CMD ["./application", "-Dquarkus.http.host=0.0.0.0"]
|
||||||
@ -0,0 +1,46 @@
|
|||||||
|
package two.pm.traqtor;
|
||||||
|
|
||||||
|
import io.vertx.core.http.HttpServerRequest;
|
||||||
|
|
||||||
|
import org.apache.cayenne.BaseContext;
|
||||||
|
import org.apache.cayenne.configuration.server.ServerRuntime;
|
||||||
|
import org.jboss.logging.Logger;
|
||||||
|
|
||||||
|
import javax.inject.Inject;
|
||||||
|
import javax.ws.rs.container.ContainerRequestContext;
|
||||||
|
import javax.ws.rs.container.ContainerRequestFilter;
|
||||||
|
import javax.ws.rs.core.Context;
|
||||||
|
import javax.ws.rs.core.Response;
|
||||||
|
import javax.ws.rs.core.UriInfo;
|
||||||
|
import javax.ws.rs.core.Response.Status;
|
||||||
|
import javax.ws.rs.ext.Provider;
|
||||||
|
|
||||||
|
@Provider
|
||||||
|
public class AccessFilter implements ContainerRequestFilter {
|
||||||
|
|
||||||
|
// private static final Logger LOG = Logger.getLogger(LoggingFilter.class);
|
||||||
|
|
||||||
|
@Context
|
||||||
|
UriInfo info;
|
||||||
|
|
||||||
|
@Context
|
||||||
|
HttpServerRequest request;
|
||||||
|
|
||||||
|
@Inject
|
||||||
|
CayenneRuntimeFactory cayenneRuntimeFactory;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void filter(ContainerRequestContext context) {
|
||||||
|
|
||||||
|
BaseContext.bindThreadObjectContext(cayenneRuntimeFactory.cayenneRuntime().newContext());
|
||||||
|
|
||||||
|
final String method = context.getMethod();
|
||||||
|
final String path = info.getPath();
|
||||||
|
// final String address = request.remoteAddress().toString();
|
||||||
|
// System.out.println(method + " : " + path);
|
||||||
|
if (path.equals("/hello/secret")) {
|
||||||
|
context.abortWith(Response.status(Status.UNAUTHORIZED).build());
|
||||||
|
}
|
||||||
|
// LOG.infof("Request %s %s from IP %s", method, path, address);
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,53 @@
|
|||||||
|
package two.pm.traqtor;
|
||||||
|
|
||||||
|
import javax.enterprise.context.ApplicationScoped;
|
||||||
|
import javax.inject.Singleton;
|
||||||
|
|
||||||
|
import org.apache.cayenne.ObjectContext;
|
||||||
|
import org.apache.cayenne.configuration.Constants;
|
||||||
|
import org.apache.cayenne.configuration.server.ServerRuntime;
|
||||||
|
import org.apache.cayenne.di.Key;
|
||||||
|
import org.apache.cayenne.log.JdbcEventLogger;
|
||||||
|
import org.apache.cayenne.log.NoopJdbcEventLogger;
|
||||||
|
import org.apache.cayenne.query.SQLExec;
|
||||||
|
import org.apache.cayenne.resource.ResourceLocator;
|
||||||
|
|
||||||
|
@ApplicationScoped
|
||||||
|
public class CayenneRuntimeFactory {
|
||||||
|
|
||||||
|
private static ServerRuntime runtime;
|
||||||
|
|
||||||
|
@Singleton
|
||||||
|
public ServerRuntime cayenneRuntime() {
|
||||||
|
if (runtime == null) {
|
||||||
|
runtime = ServerRuntime.builder().addConfig("db/cayenne-traqtor.xml")
|
||||||
|
.addModule(binder -> binder.bind(JdbcEventLogger.class).to(NoopJdbcEventLogger.class))
|
||||||
|
.addModule(binder -> {
|
||||||
|
binder.bind(ResourceLocator.class).to(ClassLoaderResourceLocatorFix.class);
|
||||||
|
binder.bind(Key.get(ResourceLocator.class, Constants.SERVER_RESOURCE_LOCATOR))
|
||||||
|
.to(ClassLoaderResourceLocatorFix.class);
|
||||||
|
}).build();
|
||||||
|
|
||||||
|
ObjectContext context = runtime.newContext();
|
||||||
|
SQLExec.query(
|
||||||
|
"CREATE TABLE IF NOT EXISTS user (email VARCHAR(36) NULL, id VARBINARY(36) NOT NULL, PRIMARY KEY (id));")
|
||||||
|
.execute(context);
|
||||||
|
SQLExec.query(
|
||||||
|
"CREATE SEQUENCE IF NOT EXISTS pk_user START WITH -9223372036854775808 INCREMENT BY 20 CACHE 1;")
|
||||||
|
.execute(context);
|
||||||
|
context.commitChanges();
|
||||||
|
}
|
||||||
|
|
||||||
|
return runtime;
|
||||||
|
// return
|
||||||
|
// ServerRuntime.builder().dataSource(dataSource).addConfig("db/cayenne-test.xml").addModule(binder
|
||||||
|
// -> {
|
||||||
|
// //
|
||||||
|
// binder.bind(ResourceLocator.class).to(ClassLoaderResourceLocatorFix.class);
|
||||||
|
// // binder.bind(Key.get(ResourceLocator.class,
|
||||||
|
// Constants.SERVER_RESOURCE_LOCATOR))
|
||||||
|
// // .to(ClassLoaderResourceLocatorFix.class);
|
||||||
|
// }).build();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@ -0,0 +1,65 @@
|
|||||||
|
package two.pm.traqtor;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.net.MalformedURLException;
|
||||||
|
import java.net.URI;
|
||||||
|
import java.net.URISyntaxException;
|
||||||
|
import java.net.URL;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Collection;
|
||||||
|
import java.util.Enumeration;
|
||||||
|
|
||||||
|
import org.apache.cayenne.CayenneRuntimeException;
|
||||||
|
import org.apache.cayenne.ConfigurationException;
|
||||||
|
import org.apache.cayenne.di.ClassLoaderManager;
|
||||||
|
import org.apache.cayenne.di.Inject;
|
||||||
|
import org.apache.cayenne.resource.Resource;
|
||||||
|
import org.apache.cayenne.resource.ResourceLocator;
|
||||||
|
import org.apache.cayenne.resource.URLResource;
|
||||||
|
|
||||||
|
public class ClassLoaderResourceLocatorFix implements ResourceLocator {
|
||||||
|
|
||||||
|
private ClassLoaderManager classLoaderManager;
|
||||||
|
|
||||||
|
public ClassLoaderResourceLocatorFix(@Inject ClassLoaderManager classLoaderManager) {
|
||||||
|
this.classLoaderManager = classLoaderManager;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Collection<Resource> findResources(String name) {
|
||||||
|
final Collection<Resource> resources = new ArrayList<>(3);
|
||||||
|
|
||||||
|
final Enumeration<URL> urls;
|
||||||
|
try {
|
||||||
|
urls = classLoaderManager.getClassLoader(name).getResources(name);
|
||||||
|
} catch (IOException e) {
|
||||||
|
throw new ConfigurationException("Error getting resources for ");
|
||||||
|
}
|
||||||
|
|
||||||
|
while (urls.hasMoreElements()) {
|
||||||
|
resources.add(new URLResourceFix(urls.nextElement()));
|
||||||
|
}
|
||||||
|
|
||||||
|
return resources;
|
||||||
|
}
|
||||||
|
|
||||||
|
private class URLResourceFix extends URLResource {
|
||||||
|
|
||||||
|
URLResourceFix(URL url) {
|
||||||
|
super(url);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Resource getRelativeResource(String relativePath) {
|
||||||
|
try {
|
||||||
|
String url = getURL().toString();
|
||||||
|
url = url.substring(0, url.lastIndexOf("/") + 1) + relativePath;
|
||||||
|
|
||||||
|
return new URLResource(new URI(url).toURL());
|
||||||
|
} catch (MalformedURLException | URISyntaxException e) {
|
||||||
|
throw new CayenneRuntimeException("Error creating relative resource '%s' : '%s'", e, getURL(),
|
||||||
|
relativePath);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,46 @@
|
|||||||
|
package two.pm.traqtor;
|
||||||
|
|
||||||
|
import io.quarkus.runtime.annotations.QuarkusMain;
|
||||||
|
|
||||||
|
import javax.inject.Inject;
|
||||||
|
|
||||||
|
import org.apache.cayenne.ObjectContext;
|
||||||
|
import org.apache.cayenne.configuration.server.ServerRuntime;
|
||||||
|
import org.apache.cayenne.log.JdbcEventLogger;
|
||||||
|
import org.apache.cayenne.log.NoopJdbcEventLogger;
|
||||||
|
import org.apache.cayenne.query.SQLExec;
|
||||||
|
import io.quarkus.runtime.Quarkus;
|
||||||
|
|
||||||
|
@QuarkusMain
|
||||||
|
public class TraQtor {
|
||||||
|
// public static ServerRuntime cayenneRuntime;
|
||||||
|
|
||||||
|
public static void main(String... args) {
|
||||||
|
// if (cayenneRuntime == null) {
|
||||||
|
|
||||||
|
// .performInTransaction(() -> {
|
||||||
|
// // ... do some changes
|
||||||
|
// context.commitChanges();
|
||||||
|
|
||||||
|
// // ... do more changes
|
||||||
|
// context.commitChanges();
|
||||||
|
|
||||||
|
// return true;
|
||||||
|
// });
|
||||||
|
|
||||||
|
// Module cryptoExtensions = CryptoModule.extend()
|
||||||
|
// .keyStore("file:///mykeystore", "keystorepassword".toCharArray(), "keyalias")
|
||||||
|
// .compress()
|
||||||
|
// .module();
|
||||||
|
|
||||||
|
// cayenneRuntime =
|
||||||
|
// ServerRuntime.builder().addConfig("cayenne/cayenne-traqtor.xml")
|
||||||
|
// .addModule(binder ->
|
||||||
|
// binder.bind(JdbcEventLogger.class).to(NoopJdbcEventLogger.class)).build();
|
||||||
|
|
||||||
|
// }
|
||||||
|
|
||||||
|
System.out.println("Running main method");
|
||||||
|
Quarkus.run(args);
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,64 @@
|
|||||||
|
package two.pm.traqtor.api.test;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.UUID;
|
||||||
|
import java.util.stream.Collector;
|
||||||
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
|
import javax.ws.rs.GET;
|
||||||
|
import javax.ws.rs.Path;
|
||||||
|
import javax.ws.rs.PathParam;
|
||||||
|
import javax.ws.rs.Produces;
|
||||||
|
import javax.ws.rs.core.MediaType;
|
||||||
|
|
||||||
|
import org.apache.cayenne.BaseContext;
|
||||||
|
import org.apache.cayenne.Cayenne;
|
||||||
|
import org.apache.cayenne.ObjectContext;
|
||||||
|
import org.apache.cayenne.ObjectId;
|
||||||
|
import org.apache.cayenne.query.ObjectSelect;
|
||||||
|
|
||||||
|
import two.pm.traqtor.TraQtor;
|
||||||
|
import two.pm.traqtor.db.User;
|
||||||
|
import two.pm.traqtor.db.User.DTO;
|
||||||
|
|
||||||
|
@Path("/hello")
|
||||||
|
public class HelloResource {
|
||||||
|
|
||||||
|
private List<DTO> result;
|
||||||
|
|
||||||
|
@GET
|
||||||
|
@Produces(MediaType.TEXT_PLAIN)
|
||||||
|
public String hello() {
|
||||||
|
ObjectContext context = BaseContext.getThreadObjectContext();
|
||||||
|
// ObjectContext context = TraQtor.cayenneRuntime.newContext();
|
||||||
|
return String.valueOf(ObjectSelect.query(User.class).selectCount(context));
|
||||||
|
}
|
||||||
|
|
||||||
|
@GET
|
||||||
|
@Path("/list")
|
||||||
|
@Produces(MediaType.APPLICATION_JSON)
|
||||||
|
public List<User.DTO> list() {
|
||||||
|
ObjectContext context = BaseContext.getThreadObjectContext();
|
||||||
|
List<User> users = ObjectSelect.query(User.class).select(context);
|
||||||
|
return users.stream().map(user -> new User.DTO(Cayenne.pkForObject(user).toString(), user.getEmail()))
|
||||||
|
.collect(Collectors.toList());
|
||||||
|
}
|
||||||
|
|
||||||
|
@GET
|
||||||
|
@Path("/add/{email}")
|
||||||
|
@Produces(MediaType.TEXT_PLAIN)
|
||||||
|
public String add(@PathParam("email") String email) {
|
||||||
|
ObjectContext context = BaseContext.getThreadObjectContext();
|
||||||
|
User user = context.newObject(User.class);
|
||||||
|
user.setEmail(email);
|
||||||
|
context.commitChanges();
|
||||||
|
return hello();
|
||||||
|
}
|
||||||
|
|
||||||
|
@GET
|
||||||
|
@Path("/secret")
|
||||||
|
@Produces(MediaType.TEXT_PLAIN)
|
||||||
|
public String secret() {
|
||||||
|
return "Hello RESTEasy";
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,18 @@
|
|||||||
|
package two.pm.traqtor.db;
|
||||||
|
|
||||||
|
import two.pm.traqtor.db.auto._Datamap;
|
||||||
|
|
||||||
|
public class Datamap extends _Datamap {
|
||||||
|
|
||||||
|
private static Datamap instance;
|
||||||
|
|
||||||
|
private Datamap() {}
|
||||||
|
|
||||||
|
public static Datamap getInstance() {
|
||||||
|
if(instance == null) {
|
||||||
|
instance = new Datamap();
|
||||||
|
}
|
||||||
|
|
||||||
|
return instance;
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,18 @@
|
|||||||
|
package two.pm.traqtor.db;
|
||||||
|
|
||||||
|
import two.pm.traqtor.db.auto._Main;
|
||||||
|
|
||||||
|
public class Main extends _Main {
|
||||||
|
|
||||||
|
private static Main instance;
|
||||||
|
|
||||||
|
private Main() {}
|
||||||
|
|
||||||
|
public static Main getInstance() {
|
||||||
|
if(instance == null) {
|
||||||
|
instance = new Main();
|
||||||
|
}
|
||||||
|
|
||||||
|
return instance;
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,21 @@
|
|||||||
|
package two.pm.traqtor.db;
|
||||||
|
|
||||||
|
import two.pm.traqtor.db.auto._User;
|
||||||
|
|
||||||
|
public class User extends _User {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
public static class DTO {
|
||||||
|
|
||||||
|
public String email;
|
||||||
|
public String id;
|
||||||
|
|
||||||
|
public DTO(String id, String email) {
|
||||||
|
this.id = id;
|
||||||
|
this.email = email;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@ -0,0 +1,12 @@
|
|||||||
|
package two.pm.traqtor.db.auto;
|
||||||
|
|
||||||
|
import org.apache.cayenne.ObjectContext;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This class was generated by Cayenne.
|
||||||
|
* It is probably a good idea to avoid changing this class manually,
|
||||||
|
* since it may be overwritten next time code is regenerated.
|
||||||
|
* If you need to make any customizations, please use subclass.
|
||||||
|
*/
|
||||||
|
public class _Datamap {
|
||||||
|
}
|
||||||
@ -0,0 +1,12 @@
|
|||||||
|
package two.pm.traqtor.db.auto;
|
||||||
|
|
||||||
|
import org.apache.cayenne.ObjectContext;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This class was generated by Cayenne.
|
||||||
|
* It is probably a good idea to avoid changing this class manually,
|
||||||
|
* since it may be overwritten next time code is regenerated.
|
||||||
|
* If you need to make any customizations, please use subclass.
|
||||||
|
*/
|
||||||
|
public class _Main {
|
||||||
|
}
|
||||||
@ -0,0 +1,86 @@
|
|||||||
|
package two.pm.traqtor.db.auto;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.ObjectInputStream;
|
||||||
|
import java.io.ObjectOutputStream;
|
||||||
|
|
||||||
|
import org.apache.cayenne.BaseDataObject;
|
||||||
|
import org.apache.cayenne.exp.Property;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class _User was generated by Cayenne.
|
||||||
|
* It is probably a good idea to avoid changing this class manually,
|
||||||
|
* since it may be overwritten next time code is regenerated.
|
||||||
|
* If you need to make any customizations, please use subclass.
|
||||||
|
*/
|
||||||
|
public abstract class _User extends BaseDataObject {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
public static final String ID_PK_COLUMN = "id";
|
||||||
|
|
||||||
|
public static final Property<String> EMAIL = Property.create("email", String.class);
|
||||||
|
|
||||||
|
protected String email;
|
||||||
|
|
||||||
|
|
||||||
|
public void setEmail(String email) {
|
||||||
|
beforePropertyWrite("email", this.email, email);
|
||||||
|
this.email = email;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getEmail() {
|
||||||
|
beforePropertyRead("email");
|
||||||
|
return this.email;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Object readPropertyDirectly(String propName) {
|
||||||
|
if(propName == null) {
|
||||||
|
throw new IllegalArgumentException();
|
||||||
|
}
|
||||||
|
|
||||||
|
switch(propName) {
|
||||||
|
case "email":
|
||||||
|
return this.email;
|
||||||
|
default:
|
||||||
|
return super.readPropertyDirectly(propName);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void writePropertyDirectly(String propName, Object val) {
|
||||||
|
if(propName == null) {
|
||||||
|
throw new IllegalArgumentException();
|
||||||
|
}
|
||||||
|
|
||||||
|
switch (propName) {
|
||||||
|
case "email":
|
||||||
|
this.email = (String)val;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
super.writePropertyDirectly(propName, val);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void writeObject(ObjectOutputStream out) throws IOException {
|
||||||
|
writeSerialized(out);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException {
|
||||||
|
readSerialized(in);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void writeState(ObjectOutputStream out) throws IOException {
|
||||||
|
super.writeState(out);
|
||||||
|
out.writeObject(this.email);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void readState(ObjectInputStream in) throws IOException, ClassNotFoundException {
|
||||||
|
super.readState(in);
|
||||||
|
this.email = (String)in.readObject();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@ -0,0 +1 @@
|
|||||||
|
logoMain: https://upload.wikimedia.org/wikipedia/commons/2/27/Eucalyp-Deus_Countryside.png
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 162 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 227 KiB |
@ -0,0 +1,29 @@
|
|||||||
|
html{
|
||||||
|
box-sizing: border-box;
|
||||||
|
overflow: -moz-scrollbars-vertical;
|
||||||
|
overflow-y: scroll;
|
||||||
|
}
|
||||||
|
|
||||||
|
*,
|
||||||
|
*:before,
|
||||||
|
*:after
|
||||||
|
{
|
||||||
|
box-sizing: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
body{
|
||||||
|
margin:0;
|
||||||
|
background: rgb(192, 192, 192);
|
||||||
|
}
|
||||||
|
|
||||||
|
.swagger-ui .topbar {
|
||||||
|
background-color: rgb(128, 128, 128);
|
||||||
|
}
|
||||||
|
|
||||||
|
#footer {
|
||||||
|
/* background-color: whitesmoke; */
|
||||||
|
font-family:sans-serif;
|
||||||
|
color:#161616;
|
||||||
|
font-size:70%;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
@ -0,0 +1,20 @@
|
|||||||
|
[
|
||||||
|
{
|
||||||
|
"name": "org.apache.cayenne.configuration.server.MainCayenneServerModuleProvider",
|
||||||
|
"allDeclaredConstructors": true,
|
||||||
|
"allPublicConstructors": true,
|
||||||
|
"allDeclaredMethods": true,
|
||||||
|
"allPublicMethods": true,
|
||||||
|
"allDeclaredFields": true,
|
||||||
|
"allPublicFields": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "two.pm.traqtor.ClassLoaderResourceLocatorFix",
|
||||||
|
"allDeclaredConstructors": true,
|
||||||
|
"allPublicConstructors": true,
|
||||||
|
"allDeclaredMethods": true,
|
||||||
|
"allPublicMethods": true,
|
||||||
|
"allDeclaredFields": true,
|
||||||
|
"allPublicFields": true
|
||||||
|
}
|
||||||
|
]
|
||||||
@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"pattern": "META-INF/services/org.apache.cayenne.configuration.server.CayenneServerModuleProvider"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"pattern": "db/cayenne-test.xml"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"pattern": "db/datamap.map.xml"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
@ -0,0 +1,22 @@
|
|||||||
|
[
|
||||||
|
{
|
||||||
|
"name":"java.lang.ClassLoader",
|
||||||
|
"methods":[{"name":"getPlatformClassLoader","parameterTypes":[] }]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"java.lang.NoSuchMethodError"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"sun.management.VMManagementImpl",
|
||||||
|
"fields":[
|
||||||
|
{"name":"compTimeMonitoringSupport"},
|
||||||
|
{"name":"currentThreadCpuTimeSupport"},
|
||||||
|
{"name":"objectMonitorUsageSupport"},
|
||||||
|
{"name":"otherThreadCpuTimeSupport"},
|
||||||
|
{"name":"remoteDiagnosticCommandsSupport"},
|
||||||
|
{"name":"synchronizerUsageSupport"},
|
||||||
|
{"name":"threadAllocatedMemorySupport"},
|
||||||
|
{"name":"threadContentionMonitoringSupport"}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
@ -0,0 +1,9 @@
|
|||||||
|
Args = \
|
||||||
|
-H:+ReportUnsupportedElementsAtRuntime \
|
||||||
|
-H:ResourceConfigurationResources=${.}/custom-resource-config.json \
|
||||||
|
-H:ReflectionConfigurationResources=${.}/reflect-config.json \
|
||||||
|
-H:DynamicProxyConfigurationResources=${.}/proxy-config.json \
|
||||||
|
-H:ReflectionConfigurationResources=${.}/custom-reflect-config.json \
|
||||||
|
-H:IncludeResourceBundles=org.apache.cayenne.cayenne-strings \
|
||||||
|
--allow-incomplete-classpath \
|
||||||
|
--initialize-at-run-time=org.h2.store.fs.FileNioMemData
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
[
|
||||||
|
]
|
||||||
@ -0,0 +1,982 @@
|
|||||||
|
[
|
||||||
|
{
|
||||||
|
"name":"com.fasterxml.jackson.databind.ext.Java7HandlersImpl",
|
||||||
|
"methods":[{"name":"<init>","parameterTypes":[] }]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl",
|
||||||
|
"methods":[{"name":"<init>","parameterTypes":[] }]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl$JAXPSAXParser",
|
||||||
|
"allDeclaredFields":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser",
|
||||||
|
"allDeclaredFields":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"com.sun.org.apache.xerces.internal.parsers.AbstractXMLDocumentParser",
|
||||||
|
"allDeclaredFields":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"com.sun.org.apache.xerces.internal.parsers.SAXParser",
|
||||||
|
"allDeclaredFields":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"com.sun.org.apache.xerces.internal.parsers.XMLParser",
|
||||||
|
"allDeclaredFields":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"io.netty.bootstrap.ServerBootstrap$1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"io.netty.bootstrap.ServerBootstrap$ServerBootstrapAcceptor",
|
||||||
|
"methods":[
|
||||||
|
{"name":"channelRead","parameterTypes":["io.netty.channel.ChannelHandlerContext","java.lang.Object"] },
|
||||||
|
{"name":"exceptionCaught","parameterTypes":["io.netty.channel.ChannelHandlerContext","java.lang.Throwable"] }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"io.netty.buffer.AbstractByteBufAllocator",
|
||||||
|
"allDeclaredMethods":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"io.netty.buffer.AbstractReferenceCountedByteBuf",
|
||||||
|
"fields":[{"name":"refCnt", "allowUnsafeAccess":true}]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"io.netty.channel.ChannelDuplexHandler",
|
||||||
|
"methods":[
|
||||||
|
{"name":"bind","parameterTypes":["io.netty.channel.ChannelHandlerContext","java.net.SocketAddress","io.netty.channel.ChannelPromise"] },
|
||||||
|
{"name":"close","parameterTypes":["io.netty.channel.ChannelHandlerContext","io.netty.channel.ChannelPromise"] },
|
||||||
|
{"name":"connect","parameterTypes":["io.netty.channel.ChannelHandlerContext","java.net.SocketAddress","java.net.SocketAddress","io.netty.channel.ChannelPromise"] },
|
||||||
|
{"name":"deregister","parameterTypes":["io.netty.channel.ChannelHandlerContext","io.netty.channel.ChannelPromise"] },
|
||||||
|
{"name":"disconnect","parameterTypes":["io.netty.channel.ChannelHandlerContext","io.netty.channel.ChannelPromise"] },
|
||||||
|
{"name":"flush","parameterTypes":["io.netty.channel.ChannelHandlerContext"] },
|
||||||
|
{"name":"read","parameterTypes":["io.netty.channel.ChannelHandlerContext"] },
|
||||||
|
{"name":"write","parameterTypes":["io.netty.channel.ChannelHandlerContext","java.lang.Object","io.netty.channel.ChannelPromise"] }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"io.netty.channel.ChannelHandlerAdapter",
|
||||||
|
"methods":[{"name":"exceptionCaught","parameterTypes":["io.netty.channel.ChannelHandlerContext","java.lang.Throwable"] }]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"io.netty.channel.ChannelInboundHandlerAdapter",
|
||||||
|
"methods":[
|
||||||
|
{"name":"channelActive","parameterTypes":["io.netty.channel.ChannelHandlerContext"] },
|
||||||
|
{"name":"channelInactive","parameterTypes":["io.netty.channel.ChannelHandlerContext"] },
|
||||||
|
{"name":"channelRead","parameterTypes":["io.netty.channel.ChannelHandlerContext","java.lang.Object"] },
|
||||||
|
{"name":"channelReadComplete","parameterTypes":["io.netty.channel.ChannelHandlerContext"] },
|
||||||
|
{"name":"channelRegistered","parameterTypes":["io.netty.channel.ChannelHandlerContext"] },
|
||||||
|
{"name":"channelUnregistered","parameterTypes":["io.netty.channel.ChannelHandlerContext"] },
|
||||||
|
{"name":"channelWritabilityChanged","parameterTypes":["io.netty.channel.ChannelHandlerContext"] },
|
||||||
|
{"name":"exceptionCaught","parameterTypes":["io.netty.channel.ChannelHandlerContext","java.lang.Throwable"] },
|
||||||
|
{"name":"userEventTriggered","parameterTypes":["io.netty.channel.ChannelHandlerContext","java.lang.Object"] }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"io.netty.channel.ChannelInitializer",
|
||||||
|
"methods":[
|
||||||
|
{"name":"channelRegistered","parameterTypes":["io.netty.channel.ChannelHandlerContext"] },
|
||||||
|
{"name":"exceptionCaught","parameterTypes":["io.netty.channel.ChannelHandlerContext","java.lang.Throwable"] }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"io.netty.channel.ChannelOutboundHandlerAdapter",
|
||||||
|
"methods":[
|
||||||
|
{"name":"bind","parameterTypes":["io.netty.channel.ChannelHandlerContext","java.net.SocketAddress","io.netty.channel.ChannelPromise"] },
|
||||||
|
{"name":"close","parameterTypes":["io.netty.channel.ChannelHandlerContext","io.netty.channel.ChannelPromise"] },
|
||||||
|
{"name":"connect","parameterTypes":["io.netty.channel.ChannelHandlerContext","java.net.SocketAddress","java.net.SocketAddress","io.netty.channel.ChannelPromise"] },
|
||||||
|
{"name":"deregister","parameterTypes":["io.netty.channel.ChannelHandlerContext","io.netty.channel.ChannelPromise"] },
|
||||||
|
{"name":"disconnect","parameterTypes":["io.netty.channel.ChannelHandlerContext","io.netty.channel.ChannelPromise"] },
|
||||||
|
{"name":"flush","parameterTypes":["io.netty.channel.ChannelHandlerContext"] },
|
||||||
|
{"name":"read","parameterTypes":["io.netty.channel.ChannelHandlerContext"] }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"io.netty.channel.DefaultChannelPipeline$HeadContext",
|
||||||
|
"methods":[
|
||||||
|
{"name":"bind","parameterTypes":["io.netty.channel.ChannelHandlerContext","java.net.SocketAddress","io.netty.channel.ChannelPromise"] },
|
||||||
|
{"name":"channelActive","parameterTypes":["io.netty.channel.ChannelHandlerContext"] },
|
||||||
|
{"name":"channelInactive","parameterTypes":["io.netty.channel.ChannelHandlerContext"] },
|
||||||
|
{"name":"channelRead","parameterTypes":["io.netty.channel.ChannelHandlerContext","java.lang.Object"] },
|
||||||
|
{"name":"channelReadComplete","parameterTypes":["io.netty.channel.ChannelHandlerContext"] },
|
||||||
|
{"name":"channelRegistered","parameterTypes":["io.netty.channel.ChannelHandlerContext"] },
|
||||||
|
{"name":"channelUnregistered","parameterTypes":["io.netty.channel.ChannelHandlerContext"] },
|
||||||
|
{"name":"channelWritabilityChanged","parameterTypes":["io.netty.channel.ChannelHandlerContext"] },
|
||||||
|
{"name":"close","parameterTypes":["io.netty.channel.ChannelHandlerContext","io.netty.channel.ChannelPromise"] },
|
||||||
|
{"name":"connect","parameterTypes":["io.netty.channel.ChannelHandlerContext","java.net.SocketAddress","java.net.SocketAddress","io.netty.channel.ChannelPromise"] },
|
||||||
|
{"name":"deregister","parameterTypes":["io.netty.channel.ChannelHandlerContext","io.netty.channel.ChannelPromise"] },
|
||||||
|
{"name":"disconnect","parameterTypes":["io.netty.channel.ChannelHandlerContext","io.netty.channel.ChannelPromise"] },
|
||||||
|
{"name":"exceptionCaught","parameterTypes":["io.netty.channel.ChannelHandlerContext","java.lang.Throwable"] },
|
||||||
|
{"name":"flush","parameterTypes":["io.netty.channel.ChannelHandlerContext"] },
|
||||||
|
{"name":"read","parameterTypes":["io.netty.channel.ChannelHandlerContext"] },
|
||||||
|
{"name":"userEventTriggered","parameterTypes":["io.netty.channel.ChannelHandlerContext","java.lang.Object"] },
|
||||||
|
{"name":"write","parameterTypes":["io.netty.channel.ChannelHandlerContext","java.lang.Object","io.netty.channel.ChannelPromise"] }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"io.netty.channel.DefaultChannelPipeline$TailContext",
|
||||||
|
"methods":[
|
||||||
|
{"name":"channelActive","parameterTypes":["io.netty.channel.ChannelHandlerContext"] },
|
||||||
|
{"name":"channelInactive","parameterTypes":["io.netty.channel.ChannelHandlerContext"] },
|
||||||
|
{"name":"channelRead","parameterTypes":["io.netty.channel.ChannelHandlerContext","java.lang.Object"] },
|
||||||
|
{"name":"channelReadComplete","parameterTypes":["io.netty.channel.ChannelHandlerContext"] },
|
||||||
|
{"name":"channelRegistered","parameterTypes":["io.netty.channel.ChannelHandlerContext"] },
|
||||||
|
{"name":"channelUnregistered","parameterTypes":["io.netty.channel.ChannelHandlerContext"] },
|
||||||
|
{"name":"channelWritabilityChanged","parameterTypes":["io.netty.channel.ChannelHandlerContext"] },
|
||||||
|
{"name":"exceptionCaught","parameterTypes":["io.netty.channel.ChannelHandlerContext","java.lang.Throwable"] },
|
||||||
|
{"name":"userEventTriggered","parameterTypes":["io.netty.channel.ChannelHandlerContext","java.lang.Object"] }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"io.netty.handler.codec.ByteToMessageDecoder",
|
||||||
|
"methods":[
|
||||||
|
{"name":"channelInactive","parameterTypes":["io.netty.channel.ChannelHandlerContext"] },
|
||||||
|
{"name":"channelRead","parameterTypes":["io.netty.channel.ChannelHandlerContext","java.lang.Object"] },
|
||||||
|
{"name":"channelReadComplete","parameterTypes":["io.netty.channel.ChannelHandlerContext"] }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"io.netty.handler.codec.MessageToMessageEncoder",
|
||||||
|
"methods":[{"name":"write","parameterTypes":["io.netty.channel.ChannelHandlerContext","java.lang.Object","io.netty.channel.ChannelPromise"] }]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"io.netty.handler.codec.http.HttpObjectDecoder",
|
||||||
|
"methods":[{"name":"userEventTriggered","parameterTypes":["io.netty.channel.ChannelHandlerContext","java.lang.Object"] }]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"io.netty.handler.codec.http.websocketx.extensions.WebSocketServerExtensionHandler",
|
||||||
|
"methods":[
|
||||||
|
{"name":"channelRead","parameterTypes":["io.netty.channel.ChannelHandlerContext","java.lang.Object"] },
|
||||||
|
{"name":"write","parameterTypes":["io.netty.channel.ChannelHandlerContext","java.lang.Object","io.netty.channel.ChannelPromise"] }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"io.netty.handler.timeout.IdleStateHandler",
|
||||||
|
"methods":[
|
||||||
|
{"name":"channelActive","parameterTypes":["io.netty.channel.ChannelHandlerContext"] },
|
||||||
|
{"name":"channelInactive","parameterTypes":["io.netty.channel.ChannelHandlerContext"] },
|
||||||
|
{"name":"channelRead","parameterTypes":["io.netty.channel.ChannelHandlerContext","java.lang.Object"] },
|
||||||
|
{"name":"channelReadComplete","parameterTypes":["io.netty.channel.ChannelHandlerContext"] },
|
||||||
|
{"name":"channelRegistered","parameterTypes":["io.netty.channel.ChannelHandlerContext"] },
|
||||||
|
{"name":"write","parameterTypes":["io.netty.channel.ChannelHandlerContext","java.lang.Object","io.netty.channel.ChannelPromise"] }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"io.netty.util.AbstractReferenceCounted",
|
||||||
|
"fields":[{"name":"refCnt", "allowUnsafeAccess":true}]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"io.netty.util.ReferenceCountUtil",
|
||||||
|
"allDeclaredMethods":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"io.netty.util.internal.shaded.org.jctools.queues.BaseMpscLinkedArrayQueueColdProducerFields",
|
||||||
|
"fields":[{"name":"producerLimit", "allowUnsafeAccess":true}]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"io.netty.util.internal.shaded.org.jctools.queues.BaseMpscLinkedArrayQueueConsumerFields",
|
||||||
|
"fields":[{"name":"consumerIndex", "allowUnsafeAccess":true}]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"io.netty.util.internal.shaded.org.jctools.queues.BaseMpscLinkedArrayQueueProducerFields",
|
||||||
|
"fields":[{"name":"producerIndex", "allowUnsafeAccess":true}]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"io.netty.util.internal.shaded.org.jctools.queues.MpscArrayQueueConsumerIndexField",
|
||||||
|
"fields":[{"name":"consumerIndex", "allowUnsafeAccess":true}]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"io.netty.util.internal.shaded.org.jctools.queues.MpscArrayQueueProducerIndexField",
|
||||||
|
"fields":[{"name":"producerIndex", "allowUnsafeAccess":true}]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"io.netty.util.internal.shaded.org.jctools.queues.MpscArrayQueueProducerLimitField",
|
||||||
|
"fields":[{"name":"producerLimit", "allowUnsafeAccess":true}]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"io.quarkus.runner.ApplicationImpl",
|
||||||
|
"methods":[{"name":"<init>","parameterTypes":[] }]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"io.vertx.core.http.impl.Http1xOrH2CHandler",
|
||||||
|
"methods":[{"name":"channelRead","parameterTypes":["io.netty.channel.ChannelHandlerContext","java.lang.Object"] }]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"io.vertx.core.http.impl.Http1xUpgradeToH2CHandler",
|
||||||
|
"methods":[
|
||||||
|
{"name":"channelRead","parameterTypes":["io.netty.channel.ChannelHandlerContext","java.lang.Object"] },
|
||||||
|
{"name":"userEventTriggered","parameterTypes":["io.netty.channel.ChannelHandlerContext","java.lang.Object"] }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"io.vertx.core.http.impl.HttpServerChannelInitializer$1",
|
||||||
|
"methods":[
|
||||||
|
{"name":"exceptionCaught","parameterTypes":["io.netty.channel.ChannelHandlerContext","java.lang.Throwable"] },
|
||||||
|
{"name":"userEventTriggered","parameterTypes":["io.netty.channel.ChannelHandlerContext","java.lang.Object"] }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"io.vertx.core.http.impl.HttpServerImpl$1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"io.vertx.core.http.impl.VertxHttpRequestDecoder"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"io.vertx.core.http.impl.VertxHttpResponseEncoder"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"io.vertx.core.net.impl.VertxHandler",
|
||||||
|
"methods":[
|
||||||
|
{"name":"channelInactive","parameterTypes":["io.netty.channel.ChannelHandlerContext"] },
|
||||||
|
{"name":"channelRead","parameterTypes":["io.netty.channel.ChannelHandlerContext","java.lang.Object"] },
|
||||||
|
{"name":"channelReadComplete","parameterTypes":["io.netty.channel.ChannelHandlerContext"] },
|
||||||
|
{"name":"channelWritabilityChanged","parameterTypes":["io.netty.channel.ChannelHandlerContext"] },
|
||||||
|
{"name":"exceptionCaught","parameterTypes":["io.netty.channel.ChannelHandlerContext","java.lang.Throwable"] },
|
||||||
|
{"name":"userEventTriggered","parameterTypes":["io.netty.channel.ChannelHandlerContext","java.lang.Object"] }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"java.lang.Object",
|
||||||
|
"allDeclaredFields":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"java.lang.String",
|
||||||
|
"allDeclaredFields":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"java.lang.Thread",
|
||||||
|
"fields":[
|
||||||
|
{"name":"contextClassLoader", "allowUnsafeAccess":true},
|
||||||
|
{"name":"inheritableThreadLocals", "allowUnsafeAccess":true},
|
||||||
|
{"name":"threadLocals", "allowUnsafeAccess":true}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"java.lang.management.ManagementFactory",
|
||||||
|
"methods":[{"name":"getRuntimeMXBean","parameterTypes":[] }]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"java.lang.management.RuntimeMXBean",
|
||||||
|
"methods":[
|
||||||
|
{"name":"getInputArguments","parameterTypes":[] },
|
||||||
|
{"name":"getName","parameterTypes":[] }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"java.nio.Bits",
|
||||||
|
"fields":[{"name":"UNALIGNED"}]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"java.nio.Buffer",
|
||||||
|
"fields":[{"name":"address", "allowUnsafeAccess":true}]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"java.nio.DirectByteBuffer",
|
||||||
|
"methods":[{"name":"<init>","parameterTypes":["long","int"] }]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"java.security.MessageDigestSpi"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"java.security.SecureRandomParameters"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"java.sql.Types",
|
||||||
|
"fields":[
|
||||||
|
{"name":"ARRAY"},
|
||||||
|
{"name":"BIGINT"},
|
||||||
|
{"name":"BINARY"},
|
||||||
|
{"name":"BIT"},
|
||||||
|
{"name":"BLOB"},
|
||||||
|
{"name":"BOOLEAN"},
|
||||||
|
{"name":"CHAR"},
|
||||||
|
{"name":"CLOB"},
|
||||||
|
{"name":"DATALINK"},
|
||||||
|
{"name":"DATE"},
|
||||||
|
{"name":"DECIMAL"},
|
||||||
|
{"name":"DOUBLE"},
|
||||||
|
{"name":"FLOAT"},
|
||||||
|
{"name":"INTEGER"},
|
||||||
|
{"name":"JAVA_OBJECT"},
|
||||||
|
{"name":"LONGNVARCHAR"},
|
||||||
|
{"name":"LONGVARBINARY"},
|
||||||
|
{"name":"LONGVARCHAR"},
|
||||||
|
{"name":"NCHAR"},
|
||||||
|
{"name":"NCLOB"},
|
||||||
|
{"name":"NUMERIC"},
|
||||||
|
{"name":"NVARCHAR"},
|
||||||
|
{"name":"OTHER"},
|
||||||
|
{"name":"REAL"},
|
||||||
|
{"name":"REF"},
|
||||||
|
{"name":"SMALLINT"},
|
||||||
|
{"name":"SQLXML"},
|
||||||
|
{"name":"STRUCT"},
|
||||||
|
{"name":"TIME"},
|
||||||
|
{"name":"TIMESTAMP"},
|
||||||
|
{"name":"TINYINT"},
|
||||||
|
{"name":"VARBINARY"},
|
||||||
|
{"name":"VARCHAR"}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"java.util.ArrayList",
|
||||||
|
"allPublicMethods":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"java.util.HashMap",
|
||||||
|
"allPublicMethods":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"javax.enterprise.context.BeforeDestroyed",
|
||||||
|
"allDeclaredMethods":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"javax.enterprise.context.Destroyed",
|
||||||
|
"allDeclaredMethods":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"javax.enterprise.inject.Default",
|
||||||
|
"allDeclaredMethods":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"javax.net.ssl.SSLEngine",
|
||||||
|
"methods":[{"name":"getApplicationProtocol","parameterTypes":[] }]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"javax.ws.rs.container.ContainerRequestFilter[]"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"jdk.internal.misc.Unsafe",
|
||||||
|
"methods":[{"name":"getUnsafe","parameterTypes":[] }]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.access.DataDomain",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.access.DefaultDataRowStoreFactory",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.access.DefaultObjectMapRetainStrategy",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.access.dbsync.DefaultSchemaUpdateStrategyFactory",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.access.dbsync.SkipSchemaUpdateStrategy",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.access.jdbc.reader.DefaultRowReaderFactory",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.access.translator.batch.DefaultBatchTranslatorFactory",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.access.translator.select.DefaultSelectTranslatorFactory",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.access.types.BigDecimalType",
|
||||||
|
"allDeclaredFields":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.access.types.BigIntegerValueType",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.access.types.BooleanType",
|
||||||
|
"allDeclaredFields":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.access.types.ByteArrayType",
|
||||||
|
"allDeclaredFields":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.access.types.ByteType",
|
||||||
|
"allDeclaredFields":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.access.types.CalendarType",
|
||||||
|
"allDeclaredFields":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.access.types.CharType",
|
||||||
|
"allDeclaredFields":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.access.types.CharacterValueType",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.access.types.DateType",
|
||||||
|
"allDeclaredFields":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.access.types.DefaultValueObjectTypeRegistry",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.access.types.DoubleType",
|
||||||
|
"allDeclaredFields":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.access.types.FloatType",
|
||||||
|
"allDeclaredFields":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.access.types.IntegerType",
|
||||||
|
"allDeclaredFields":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.access.types.LocalDateTimeValueType",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.access.types.LocalDateValueType",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.access.types.LocalTimeValueType",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.access.types.LongType",
|
||||||
|
"allDeclaredFields":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.access.types.ShortType",
|
||||||
|
"allDeclaredFields":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.access.types.TimeType",
|
||||||
|
"allDeclaredFields":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.access.types.TimestampType",
|
||||||
|
"allDeclaredFields":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.access.types.UUIDValueType",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.access.types.UtilDateType",
|
||||||
|
"allDeclaredFields":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.access.types.VoidType",
|
||||||
|
"allDeclaredFields":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.ashwood.AshwoodEntitySorter",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.cache.MapQueryCache",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.cache.MapQueryCacheProvider",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.configuration.DefaultConfigurationNameMapper",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.configuration.DefaultDataChannelDescriptorMerger",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.configuration.DefaultObjectStoreFactory",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.configuration.DefaultRuntimeProperties",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.configuration.PlainTextPasswordEncoder",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.configuration.server.DataContextFactory",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.configuration.server.DataDomainProvider",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.configuration.server.DefaultDataNodeFactory",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.configuration.server.DefaultDbAdapterFactory",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.configuration.server.DelegatingDataSourceFactory",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.configuration.server.DomainDataChannelProvider",
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.configuration.server.PkGeneratorFactoryProvider",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.configuration.server.XMLPoolingDataSourceFactory",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.configuration.xml.DefaultHandlerFactory",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.configuration.xml.NoopDataChannelMetaData",
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.configuration.xml.XMLDataChannelDescriptorLoader",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.configuration.xml.XMLDataMapLoader",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.configuration.xml.XMLReaderProvider",
|
||||||
|
"allDeclaredFields":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.dba.JdbcAdapter",
|
||||||
|
"allDeclaredFields":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.dba.JdbcPkGenerator",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.dba.PerAdapterProvider",
|
||||||
|
"allDeclaredFields":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.dba.db2.DB2PkGenerator",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.dba.db2.DB2Sniffer",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.dba.derby.DerbyPkGenerator",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.dba.derby.DerbySniffer",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.dba.firebird.FirebirdSniffer",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.dba.frontbase.FrontBasePkGenerator",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.dba.frontbase.FrontBaseSniffer",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.dba.h2.H2Adapter",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.dba.h2.H2PkGenerator",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.dba.h2.H2Sniffer",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.dba.hsqldb.HSQLDBSniffer",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.dba.ingres.IngresPkGenerator",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.dba.ingres.IngresSniffer",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.dba.mariadb.MariaDBSniffer",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.dba.mysql.MySQLPkGenerator",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.dba.mysql.MySQLSniffer",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.dba.openbase.OpenBasePkGenerator",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.dba.openbase.OpenBaseSniffer",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.dba.oracle.OraclePkGenerator",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.dba.oracle.OracleSniffer",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.dba.postgres.PostgresPkGenerator",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.dba.postgres.PostgresSniffer",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.dba.sqlite.SQLiteSniffer",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.dba.sqlserver.SQLServerSniffer",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.dba.sybase.SybasePkGenerator",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.dba.sybase.SybaseSniffer",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.di.spi.DefaultAdhocObjectFactory",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.di.spi.DefaultClassLoaderManager",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.di.spi.DefaultInjector",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.di.spi.DefaultScopeProvider",
|
||||||
|
"allPublicMethods":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.event.EventBridge",
|
||||||
|
"allDeclaredFields":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.event.EventManagerProvider",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.event.NoopEventBridge",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.event.NoopEventBridgeProvider",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.event.NoopEventManager",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.log.NoopJdbcEventLogger",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.log.Slf4jJdbcEventLogger",
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.resource.ClassLoaderResourceLocator",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.template.CayenneSQLTemplateProcessor",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.template.DefaultTemplateContextFactory",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.tx.DefaultTransactionFactory",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.tx.DefaultTransactionManager",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.apache.cayenne.tx.TransactionFilter",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allDeclaredMethods":true,
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.h2.Driver",
|
||||||
|
"methods":[{"name":"<init>","parameterTypes":[] }]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.h2.engine.Engine",
|
||||||
|
"methods":[{"name":"getInstance","parameterTypes":[] }]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.h2.mvstore.db.MVTableEngine",
|
||||||
|
"methods":[{"name":"<init>","parameterTypes":[] }]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.jboss.resteasy.core.AcceptHeaderByFileSuffixFilter",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allDeclaredMethods":true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.jboss.threads.EnhancedQueueExecutor",
|
||||||
|
"fields":[
|
||||||
|
{"name":"activeCount", "allowUnsafeAccess":true},
|
||||||
|
{"name":"peakQueueSize", "allowUnsafeAccess":true},
|
||||||
|
{"name":"peakThreadCount", "allowUnsafeAccess":true},
|
||||||
|
{"name":"queueSize", "allowUnsafeAccess":true},
|
||||||
|
{"name":"sequence"},
|
||||||
|
{"name":"terminationWaiters", "allowUnsafeAccess":true}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.jboss.threads.EnhancedQueueExecutor$PoolThreadNode",
|
||||||
|
"fields":[
|
||||||
|
{"name":"parked", "allowUnsafeAccess":true},
|
||||||
|
{"name":"task", "allowUnsafeAccess":true}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.jboss.threads.EnhancedQueueExecutor$QNode",
|
||||||
|
"fields":[{"name":"next", "allowUnsafeAccess":true}]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.jboss.threads.EnhancedQueueExecutorBase1",
|
||||||
|
"fields":[{"name":"tail", "allowUnsafeAccess":true}]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.jboss.threads.EnhancedQueueExecutorBase3",
|
||||||
|
"fields":[{"name":"head", "allowUnsafeAccess":true}]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.jboss.threads.EnhancedQueueExecutorBase5",
|
||||||
|
"fields":[{"name":"threadStatus", "allowUnsafeAccess":true}]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"org.jboss.threads.Messages_$logger",
|
||||||
|
"methods":[{"name":"<init>","parameterTypes":["org.jboss.logging.Logger"] }]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"sun.misc.Unsafe",
|
||||||
|
"fields":[{"name":"theUnsafe"}],
|
||||||
|
"methods":[
|
||||||
|
{"name":"copyMemory","parameterTypes":["java.lang.Object","long","java.lang.Object","long","long"] },
|
||||||
|
{"name":"getAndAddLong","parameterTypes":["java.lang.Object","long","long"] },
|
||||||
|
{"name":"getAndSetObject","parameterTypes":["java.lang.Object","long","java.lang.Object"] },
|
||||||
|
{"name":"invokeCleaner","parameterTypes":["java.nio.ByteBuffer"] }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"sun.nio.ch.SelectorImpl",
|
||||||
|
"fields":[
|
||||||
|
{"name":"publicSelectedKeys", "allowUnsafeAccess":true},
|
||||||
|
{"name":"selectedKeys", "allowUnsafeAccess":true}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"sun.security.provider.MD5",
|
||||||
|
"methods":[{"name":"<init>","parameterTypes":[] }]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"sun.security.provider.NativePRNG",
|
||||||
|
"methods":[{"name":"<init>","parameterTypes":[] }]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"sun.security.provider.SHA",
|
||||||
|
"methods":[{"name":"<init>","parameterTypes":[] }]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"sun.security.provider.SHA2$SHA256",
|
||||||
|
"methods":[{"name":"<init>","parameterTypes":[] }]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"two.pm.traqtor.db.User",
|
||||||
|
"allPublicMethods":true,
|
||||||
|
"methods":[{"name":"<init>","parameterTypes":[] }]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"two.pm.traqtor.db.User$DTO",
|
||||||
|
"allDeclaredFields":true,
|
||||||
|
"allDeclaredMethods":true,
|
||||||
|
"allDeclaredConstructors":true
|
||||||
|
}
|
||||||
|
]
|
||||||
@ -0,0 +1,22 @@
|
|||||||
|
{
|
||||||
|
"resources":{
|
||||||
|
"includes":[
|
||||||
|
{"pattern":"\\QMETA-INF/resources/index.html\\E"},
|
||||||
|
{"pattern":"\\QMETA-INF/resources\\E"},
|
||||||
|
{"pattern":"\\QMETA-INF/services/io.quarkus.vertx.http.runtime.attribute.ExchangeAttributeBuilder\\E"},
|
||||||
|
{"pattern":"\\QMETA-INF/services/io.smallrye.config.ConfigSourceFactory\\E"},
|
||||||
|
{"pattern":"\\QMETA-INF/services/io.smallrye.config.SmallRyeConfigFactory\\E"},
|
||||||
|
{"pattern":"\\QMETA-INF/services/io.vertx.core.spi.BufferFactory\\E"},
|
||||||
|
{"pattern":"\\QMETA-INF/services/io.vertx.core.spi.FutureFactory\\E"},
|
||||||
|
{"pattern":"\\QMETA-INF/services/org.apache.cayenne.configuration.server.CayenneServerModuleProvider\\E"},
|
||||||
|
{"pattern":"\\QMETA-INF/services/org.eclipse.microprofile.config.spi.ConfigSource\\E"},
|
||||||
|
{"pattern":"\\QMETA-INF/services/org.eclipse.microprofile.config.spi.Converter\\E"},
|
||||||
|
{"pattern":"\\Qapplication.properties\\E"},
|
||||||
|
{"pattern":"\\Qdb/cayenne-traqtor.xml\\E"},
|
||||||
|
{"pattern":"\\Qorg/apache/cayenne/dba/h2/types.xml\\E"},
|
||||||
|
{"pattern":"\\Qorg/h2/util/data.zip\\E"},
|
||||||
|
{"pattern":"\\Qorg/jboss/threads/Version.properties\\E"},
|
||||||
|
{"pattern":"\\Qorg/slf4j/impl/StaticLoggerBinder.class\\E"}
|
||||||
|
]},
|
||||||
|
"bundles":[]
|
||||||
|
}
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
[
|
||||||
|
]
|
||||||
@ -0,0 +1,12 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>TraQtor - 0.0.1-alpha</title>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
@ -0,0 +1,39 @@
|
|||||||
|
%dev.quarkus.http.access-log.enabled=false
|
||||||
|
%dev.quarkus.http.access-log.log-to-file=false
|
||||||
|
%dev.quarkus.http.access-log.pattern=common
|
||||||
|
quarkus.banner.enabled=false
|
||||||
|
quarkus.http.auth.proactive=false
|
||||||
|
quarkus.http.same-site-cookie.session.value=Strict
|
||||||
|
# quarkus.http.proxy-address-forwarding=true
|
||||||
|
# quarkus.http.proxy.allow-forwarded=true
|
||||||
|
# quarkus.http.proxy.proxy-address-forwarding=true
|
||||||
|
# quarkus.http.proxy.enable-forwarded-host=true
|
||||||
|
# quarkus.http.proxy.enable-forwarded-prefix=true
|
||||||
|
quarkus.http.cors=true
|
||||||
|
quarkus.http.limits.max-body-size=10240K
|
||||||
|
quarkus.http.limits.max-header-size=20K
|
||||||
|
quarkus.http.limits.max-chunk-size=8192
|
||||||
|
quarkus.http.limits.max-initial-line-length=4096
|
||||||
|
quarkus.http.access-log.enabled=true
|
||||||
|
quarkus.http.access-log.pattern=combined
|
||||||
|
quarkus.http.access-log.log-to-file=true
|
||||||
|
quarkus.http.access-log.base-file-name=traqtor
|
||||||
|
quarkus.http.access-log.rotate=true
|
||||||
|
quarkus.http.auth.basic=true
|
||||||
|
quarkus.swagger-ui.theme=flattop
|
||||||
|
quarkus.smallrye-openapi.path=/doc/openapi
|
||||||
|
quarkus.swagger-ui.path=/doc/swagger
|
||||||
|
quarkus.swagger-ui.title=TraQtor API
|
||||||
|
quarkus.swagger-ui.deep-linking=true
|
||||||
|
quarkus.swagger-ui.display-operation-id=true
|
||||||
|
quarkus.swagger-ui.display-request-duration=true
|
||||||
|
quarkus.swagger-ui.footer=powered by 2pm.tech
|
||||||
|
quarkus.resteasy.gzip.enabled=true
|
||||||
|
quarkus.resteasy.gzip.max-input=10M
|
||||||
|
quarkus.native.additional-build-args=\
|
||||||
|
--allow-incomplete-classpath,\
|
||||||
|
--initialize-at-run-time=org.h2.store.fs.FileNioMemData
|
||||||
|
# -H:ResourceConfigurationFiles=resources-config.json,\
|
||||||
|
# -H:ReflectionConfigurationFiles=reflection-config.json,\
|
||||||
|
# --initialize-at-run-time=org.h2.value.ValueGeometry\\,org.h2.store.fs.FileNioMemData,\
|
||||||
|
# --allow-incomplete-classpath
|
||||||
@ -0,0 +1,19 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<domain xmlns="http://cayenne.apache.org/schema/10/domain"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
xsi:schemaLocation="http://cayenne.apache.org/schema/10/domain https://cayenne.apache.org/schema/10/domain.xsd"
|
||||||
|
project-version="10">
|
||||||
|
<map name="datamap"/>
|
||||||
|
<node name="traqtor"
|
||||||
|
factory="org.apache.cayenne.configuration.server.XMLPoolingDataSourceFactory"
|
||||||
|
schema-update-strategy="org.apache.cayenne.access.dbsync.SkipSchemaUpdateStrategy">
|
||||||
|
<map-ref name="datamap"/>
|
||||||
|
<data-source>
|
||||||
|
<driver value="org.h2.Driver"/>
|
||||||
|
<url value="jdbc:h2:mem:traqtor;MVCC=TRUE"/>
|
||||||
|
<connectionPool min="1" max="1"/>
|
||||||
|
<login userName="traqtor" password="traqtor"/>
|
||||||
|
</data-source>
|
||||||
|
</node>
|
||||||
|
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="traqtor.graph.xml"/>
|
||||||
|
</domain>
|
||||||
@ -0,0 +1,27 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<data-map xmlns="http://cayenne.apache.org/schema/10/modelMap"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
xsi:schemaLocation="http://cayenne.apache.org/schema/10/modelMap https://cayenne.apache.org/schema/10/modelMap.xsd"
|
||||||
|
project-version="10">
|
||||||
|
<property name="defaultPackage" value="two.pm.traqtor.db"/>
|
||||||
|
<db-entity name="user">
|
||||||
|
<db-attribute name="email" type="VARCHAR" length="36"/>
|
||||||
|
<db-attribute name="id" type="BIGINT" isPrimaryKey="true" isMandatory="true" length="36"/>
|
||||||
|
</db-entity>
|
||||||
|
<obj-entity name="User" className="two.pm.traqtor.db.User" dbEntityName="user">
|
||||||
|
<obj-attribute name="email" type="java.lang.String" db-attribute-path="email"/>
|
||||||
|
</obj-entity>
|
||||||
|
<cgen xmlns="http://cayenne.apache.org/schema/10/cgen">
|
||||||
|
<destDir>../../java</destDir>
|
||||||
|
<mode>all</mode>
|
||||||
|
<template>templates/v4_1/subclass.vm</template>
|
||||||
|
<superTemplate>templates/v4_1/superclass.vm</superTemplate>
|
||||||
|
<outputPattern>*.java</outputPattern>
|
||||||
|
<makePairs>true</makePairs>
|
||||||
|
<usePkgPath>true</usePkgPath>
|
||||||
|
<overwrite>false</overwrite>
|
||||||
|
<createPropertyNames>false</createPropertyNames>
|
||||||
|
<createPKProperties>false</createPKProperties>
|
||||||
|
<client>false</client>
|
||||||
|
</cgen>
|
||||||
|
</data-map>
|
||||||
@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<graphs xmlns="http://cayenne.apache.org/schema/10/graph">
|
||||||
|
<graph type="ER" scale="1.0">
|
||||||
|
<entity name="user" x="23.0" y="20.0" width="35.0" height="62.0"/>
|
||||||
|
</graph>
|
||||||
|
</graphs>
|
||||||
@ -0,0 +1,21 @@
|
|||||||
|
// package org.my.group;
|
||||||
|
|
||||||
|
// import io.quarkus.test.junit.QuarkusTest;
|
||||||
|
// import org.junit.jupiter.api.Test;
|
||||||
|
|
||||||
|
// import static io.restassured.RestAssured.given;
|
||||||
|
// import static org.hamcrest.CoreMatchers.is;
|
||||||
|
|
||||||
|
// @QuarkusTest
|
||||||
|
// public class MyResourceTest {
|
||||||
|
|
||||||
|
// @Test
|
||||||
|
// public void testHelloEndpoint() {
|
||||||
|
// given()
|
||||||
|
// .when().get("/hello")
|
||||||
|
// .then()
|
||||||
|
// .statusCode(200)
|
||||||
|
// .body(is("Hello RESTEasy"));
|
||||||
|
// }
|
||||||
|
|
||||||
|
// }
|
||||||
@ -0,0 +1,9 @@
|
|||||||
|
// package org.my.group;
|
||||||
|
|
||||||
|
// import io.quarkus.test.junit.NativeImageTest;
|
||||||
|
|
||||||
|
// @NativeImageTest
|
||||||
|
// public class NativeMyResourceIT extends MyResourceTest {
|
||||||
|
|
||||||
|
// // Execute the same tests but in native mode.
|
||||||
|
// }
|
||||||
@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"folders": [
|
||||||
|
{
|
||||||
|
"path": "."
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"settings": {}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue