JAVA: mudanças entre as edições
Ir para navegação
Ir para pesquisar
(→Feing) |
(→Maven) |
||
Linha 5: | Linha 5: | ||
=Maven= | =Maven= | ||
*[https://maven.apache.org/guides/introduction/introduction-to-the-lifecycle.html Introduction to the Build Lifecycle] | |||
*[https://maven.apache.org/guides/introduction/introduction-to-archetypes.html introduction-to-archetypes] | *[https://maven.apache.org/guides/introduction/introduction-to-archetypes.html introduction-to-archetypes] | ||
<pre> | <pre> | ||
Linha 17: | Linha 18: | ||
-Dmaven.wagon.http.ssl.insecure=true | -Dmaven.wagon.http.ssl.insecure=true | ||
</pre> | </pre> | ||
=[https://github.com/GoogleContainerTools/jib JIB]= | =[https://github.com/GoogleContainerTools/jib JIB]= | ||
Compite tto tar | Compite tto tar |
Edição das 14h13min de 21 de abril de 2021
Study
Maven
mvn archetype:generate -DartifactId=teste -DgroupId=br.com.clusterlab -DinteractiveMode=false -DarchetypeArtifactId=maven-archetype-quickstart
Do not validade SSL
mvn -Dmaven.wagon.http.ssl.insecure=true package
Maven SSL Insecure
-Dmaven.wagon.http.ssl.insecure=true
JIB
Compite tto tar
compile jib:buildTar compile jib:build -Dmaven.wagon.http.ssl.insecure=true package
<build>
<plugins>
<plugin>
<groupId>com.google.cloud.tools</groupId>
<artifactId>jib-maven-plugin</artifactId>
<version>1.0.0</version>
<configuration>
<allowInsecureRegistries>false</allowInsecureRegistries>
<from>
<image>mcr.microsoft.com/java/jdk:8-zulu-alpine</image>
</from>
<to>
<image>registryurl.com/spring-jib</image>
<tags>
<tag>0.4</tag>
</tags>
<auth>
<username>${env.REGISTRY_USERNAME}</username>
<password>${env.REGISTRY_PASSWORD}</password>
</auth>
</to>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>build</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
IDES
Spring
JRE
JAVAWS
Disable security
C:\Program Files (x86)\Java\jre1.8.0_91\lib\security\java.security:
Remove MD5:
jdk.certpath.disabledAlgorithms
Remove SSLv3, RC4, and MD5withRSA:
jdk.tls.disabledAlgorithms
Arguments
- JMXRemote
-Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=18001 -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=false
- Change server port
java -jar target/HelloWorld-0.1.0.jar --server.port=8091