Skip to main content

Posts

IndicThreads Java Conference - What a Experience

Its a very good experience of attending the IndicThreads Java Conference in Pune. Its very exciting to listening to the gurus of the Java and other latest technologies. I have learned a lot from the technology gurus specially from the Arun Gupta from the Sun Microsystems. It is my first ever experience of attending any Java conference. IBM developerWorks is a Gold Sponsor for the event. The event is occurred in a beautiful hotel Orbett. Harshad Oak - The very first Java Champion from India; I am very delited after meeting him. He is very nice guy and he is also the organizer of the event. I had asked him questions about how he had become the Java Champion . I asked him the procedure for the same. He had told me in the straight forward way that it is a very simple as you have to do something very special in the field of Java. I think he had done something good in the files of Java as he has been nominated by the community members of the Java. He might have done something

IndicThreads.com Conference On Java

IndicThreads.com Conference On Java is going to held on 11th and 12th Dec '09 at Pune, India. This is very intersting event especially for java passioniors and lovers. You can join the conference by visiting the website http://j09.indicthreads.com/ or clicking on the logo on the right side of this page displaying the event like this. I hope you will enjoy the event and the future of java and many other intersting technologies. I love to be there.

Weblogic Portal Example

Here I am going to make a simple example of Weblogic Portal. Minimum requirements: Weblogic Portals Weblogic Workshop Weblogic Server Basically when you download weblogic portals then you will have all the necessary things already installed. It can be downloaded from http://www.oracle.com/technology/software/products/ias/bea_main.html You have to download Oracle WebLogic Portal 10.3 . Step 1: Setting up the Weblogic Workshop  Open Weblogic Workshop from Programs -> Oracle Weblogic -> Workshop for Weblogic . Change the perspective to Portal i.e. Window -> Open Perspective -> Others -> Portal . Step 2: Create sample application Create new Portal EAR project from File -> New -> Portal EAR Project . Name it sampleEAR. Click next and proceeds with default setting. Create new PortalWEB project from File -> New -> Portal Web Project . Name it sampleWEB. Associate it with sampleEAR by clicking on checkbox if it is not selected and proceeds without any cha

"Java Is Dead, Long Live Java!" – The Future of Java

"Java Is Dead, Long Live Java!" – The Future of Java — 'Because of its prominence,' writes Bryan Taylor, 'Java gets a lot of attention and with it much criticism, some of it valid.' What many may not realize, Taylor notes, is that some big breakthroughs have arrived and that the Java development landscape is solving important problems. In this column he takes a view of where Java is going to go in the next year or two as these ideas gain traction. Trackback URL :  Click Here

Struts 2.1.2 Released

Yesterday when I was searching for something on Google. I found that Apache had released the latest version of Struts 2 which is Struts 2.1.2 , and promoted it to Beta on 26 March 2008 Struts 2 in Action You can download it from Struts Download Page

Struts 2 Hello World Example

I had seen many new deveopers struggling against struts2 hello world example. So I decided to write a small example. Below are the required libraries to run this example which are easily availabel struts2-core-2.1.8.1 xwork-core-2.1.6 commons-logging-1.0.4 commons-logging-api-1.1 freemarker-2.3.8 ognl-2.7.3 commons-fileupload-1.2 The structure of the applictaion which I am following is (Eclipse IDE) Struts2Demo |---src | |----org | | |----vinod | | | |----action | | | | |----HelloWorld।java |---struts.xml |---WebContent | |---jsp | |---HelloWorld।jsp |---index.jsp |---WEB-INF | |---lib | |---web.xml Struts 2 in Action It is true that different IDE's use different structure, but at last when war is build they follow same structure. Lets start... HelloWorld.java import com.opensymphony.xwork2.ActionSupport; public class HelloWorld extends ActionSupport { String greetings = null; public String execute() throws Exception { setGreetings("Hel