Download Intellij IDEA https://www.youtube.com/watch?v=2hNNWzdxlRg Download IntelliJ IDEA Install Intellij IDEA https://www.youtube.com/watch?v=EO023KXJATs Install Intellij IDEA
Java 11: Download, Install and Test
Download https://www.youtube.com/watch?v=_mQugHR3_XI Download Java 11 Install https://www.youtube.com/watch?v=Riseql8un9A Install Java 11 Test https://www.youtube.com/watch?v=Ni_d-29_Ghc Test Java 11 Installation
Simple Java 11 Maven Project with Intellij IDEA
In this post we are going to create a simple Hello World in Java11 using maven and Intellij IDEA. We are also going to deal with the compilation error "Error: java: error: release version 5 not supported" and the compilation warning "File encoding has not been set, using platform encoding UTF-8" Video https://youtu.be/H3valiUGQck Create the... Continue Reading →
JMS – A bit more detail
I do not want to go into a lot of detail here, because the JMS Documentation is very good. This post is more an abridged description, with working code. Install ActiveMQ First install ActiveMQ as per my previous post. Start ActiveMQ as per the instructions in the previous Open the web browser and view the queues.... Continue Reading →
Mac OSX Switch Java Version
/usr/libexec/java_home -V this will list all the Java Versions on the machine select the specific version using: export JAVA_HOME=`/usr/libexec/java_home -v 1.8.0_125` or just specify the major number export JAVA_HOME=`/usr/libexec/java_home -v 1.8` Now run java -version
Create a Maven Project
In this example we will create an empty Maven Java Project. Install Dependencies Install JavaInstall MavenInstall IDE Eclipse Netbeans Intellij IDEA Create Maven Project Intellij IDE Step 1 Open Intellij IDE Step 2 Create New ProjectMavenleave Create from archetype uncheckedNext Step 3 GroupId: -e.g. com.skills421.trainingArtifactId: - e.g. MyProjectVersion: 1.0-SNAPSHOTNext Step 4 Project Name: - e.g. MyProjectProject... Continue Reading →
Intellij IDEA, JUnit, set JUnit version in test class
@RunWith(JUnit4.class) public class MainTest extends TestCase { ...
Package JavaFX App for the Mac App Store
Yes, it's possible to compile your JavaFX code as a native app, and then code sign it and submit it to the Mac App store. Package your JavaFX App Here are a couple of great links: http://docs.oracle.com/javase/7/docs/technotes/guides/jweb/packagingAppsForMac.htmlhttps://gist.github.com/jewelsea/5018976 The Shell Script to Package your Code
JavaFX8 EventHandler Inner Class to Lambda
An Exit Menu using EventHandler The same using Lambda Expressions