Above error was occurred in Maven project while running application in weblogic server. It can be ignored by modifying pom.xml file as below.
<dependency>
<groupId>axis</groupId>
<artifactId>axis</artifactId>
<version>1.4</version>
<exclusions>
<exclusion> <!-- declare the exclusion here -->
<groupId>org.apache.axis</groupId>
<artifactId>axis-jaxrpc</artifactId>
</exclusion>
</exclusions>
</dependency>
Sunday, February 18, 2018
Monday, October 2, 2017
JAVA application Monitoring using JMX
Your application can be started with following JMX parameter.
-Dcom.sun.management.jmxremote.port=12345
Or
You can set System property as JMX port as follows to enable JMX monitoring.
System.setProperty("com.sun.management.jmxremote.port", 12345);
Then, use VisualVM to monitor your application. You can monitor CPU, Memory, Threads etc using this VisualVM tool.
https://visualvm.github.io/
For more information visit :-
https://dzone.com/articles/java-memory-and-cpu-monitoring-tools-and-technique
-Dcom.sun.management.jmxremote.port=12345
Or
You can set System property as JMX port as follows to enable JMX monitoring.
System.setProperty("com.sun.management.jmxremote.port", 12345);
Then, use VisualVM to monitor your application. You can monitor CPU, Memory, Threads etc using this VisualVM tool.
https://visualvm.github.io/
For more information visit :-
https://dzone.com/articles/java-memory-and-cpu-monitoring-tools-and-technique
Tuesday, August 29, 2017
Find files in Linux and move files
Following command can be used to find files in a directory and move found files into /home/sujith/files/ location.
find . -name "*" -maxdepth 1 -exec mv -t /home/sujith/files {} +
find . -name "*" -maxdepth 1 -exec mv -t /home/sujith/files {} +
Monday, August 28, 2017
Copy large number of files between Linux servers
You can use "rsync" command to sync data between two locations.
rsync -r dir1/ dir2
sync the contents of dir1 to dir2 on the same system (-r option for recursive)
rsync -a dir1 username@remote_host:destination_directory
sync directory from the local system to a remote system ( pushing files to destination)
rsync -a username@remote_host:/home/dir1 place_to_sync_on_local_machine
sync a remote directory to the local system (pulling files from remote machine)
Also, you can compressed and sync files between locations using following command.
rsync -az source destination
https://www.digitalocean.com/community/tutorials/how-to-use-rsync-to-sync-local-and-remote-directories-on-a-vps
rsync -r dir1/ dir2
sync the contents of dir1 to dir2 on the same system (-r option for recursive)
rsync -a dir1 username@remote_host:destination_directory
sync directory from the local system to a remote system ( pushing files to destination)
rsync -a username@remote_host:/home/dir1 place_to_sync_on_local_machine
sync a remote directory to the local system (pulling files from remote machine)
Also, you can compressed and sync files between locations using following command.
rsync -az source destination
https://www.digitalocean.com/community/tutorials/how-to-use-rsync-to-sync-local-and-remote-directories-on-a-vps
Thursday, August 24, 2017
Linux shell script to find files and copy into another location
You can use following shell script to find files in directories and copy into another location.
#!/bin/bash
for k in `cat errlog_tmp.txt`;
do
arr=( $(find . -name "$k*" -type f));
echo $arr;( cp $arr "./error1$k");
done;
#!/bin/bash
for k in `cat errlog_tmp.txt`;
do
arr=( $(find . -name "$k*" -type f));
echo $arr;( cp $arr "./error1$k");
done;
Above shell will cat file names in "errlog.txt" and find in the current directories. After successful file found, it is copied into "./error/" directory.
Tuesday, July 18, 2017
JAVA Web Start (JWS) JNLP Example
JWS is introduced to use client side application processing through web. Clients are downloading JNLP application and execute the application to process data.
- Create JAR file that you want to execute it in client side (TestJNLP.jar)
- Sign the file using your certificate
- keytool -genkey -keystore testKeys -alias test
- jarsigner -keystore testKeys TestJnlp.jar test
- Create JNLP file (Test.jnlp)
- Deploy JNLP file and signed JAR file in web server
- Download JNLP file and execute application (http://localhost:8080/Test.jnlp)
Sample JNLP file
<?xml version="1.0" encoding="utf-8"?><jnlp spec="1.0+" codebase="http://localhost:8080/" href="Test.jnlp">
<information>
<title>Jnlp Testing</title>
<vendor>Testing</vendor>
<homepage href="http://localhost:8080/" />
<description>Testing Testing</description>
</information>
<security>
<all-permissions/>
</security>
<resources>
<j2se version="1.6+" />
<jar href="TestJnlp.jar" />
</resources>
<application-desc main-class="com.test.TestJnlp" />
</jnlp>
For Windows OS, change OS type in resource XML tag as follows.
<resources os="Windows">
For native library access, you have to create DLL into JAR file and then signed the JAR file using certificate and deploy into web server. Then, you have to change JNLP file as follows.
<resources os="Windows">
<j2se version="1.6+" />
<jar href="TestJnlp.jar" />
<nativelib href="DLLtoJAR.jar" />
</resources>
Create DLL into a JAR file using single command
jar cvf DLLtoJAR.jar testDLL.dll
Resource
https://dzone.com/articles/java-web-start-jnlp-hello
Tuesday, May 9, 2017
MAVEN build plugins
Following plugins can be used to build jar file with sources embedded.
<build>
<!-- adding your sources into jar file -->
<resources>
<resource>
<directory>${basedir}/src/main/java/</directory>
</resource>
</resources>
<plugins>
<!-- copying your resource folder into build directory -->
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>2.6</version>
<executions>
<execution>
<id>copy-resources</id>
<!-- here the phase you need -->
<phase>validate</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/resources</outputDirectory>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>false</filtering>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<!-- copying your library folder into build directory -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.8</version>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/lib</outputDirectory>
<overWriteReleases>false</overWriteReleases>
<overWriteSnapshots>false</overWriteSnapshots>
<overWriteIfNewer>true</overWriteIfNewer>
</configuration>
</execution>
</executions>
</plugin>
<!-- setting your main runner class -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<classpathPrefix>./lib/</classpathPrefix>
<mainClass>com.mobitel.dataplan.run.Runner</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<build>
<!-- adding your sources into jar file -->
<resources>
<resource>
<directory>${basedir}/src/main/java/</directory>
</resource>
</resources>
<plugins>
<!-- copying your resource folder into build directory -->
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>2.6</version>
<executions>
<execution>
<id>copy-resources</id>
<!-- here the phase you need -->
<phase>validate</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/resources</outputDirectory>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>false</filtering>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<!-- copying your library folder into build directory -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.8</version>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/lib</outputDirectory>
<overWriteReleases>false</overWriteReleases>
<overWriteSnapshots>false</overWriteSnapshots>
<overWriteIfNewer>true</overWriteIfNewer>
</configuration>
</execution>
</executions>
</plugin>
<!-- setting your main runner class -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<classpathPrefix>./lib/</classpathPrefix>
<mainClass>com.mobitel.dataplan.run.Runner</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
Subscribe to:
Posts (Atom)