Tag: java

Mule ESB

Mule is a lightweight java-based enterprise service bus and integration platform – allows to integrate with JMS, Web Service, JDBC, HTTP etc. Deployment:  Access the directory and folder in which downloaded Mule. For example, type: cd /Users/myname/Downloads/mule-standalone-3.8.0/ Start Mule. For example,...

core java – thread

Thread: Ways to create a thread:  1. Implements Runnable interface class MyThread implements Runnable { public void run() { System.out.println("concurrent thread started running.."); } } class MyThreadDemo { public static void main( String args ) { MyThread mt = new MyThread();...