Archive

Posts Tagged ‘Java’

Deploy Top-Performing Java or SQL Code with J Optimizer and DB Optimizer

April 16th, 2010 1 comment


www.embarcadero.com

Yikes! Your application just failed three performance requirements in QA. Is it your database? Is it your application? What is it? Before you begin the usual hair on fire drills tuning the parameters, rebuilding the indexes, removing them, and throwing more hardware at the problem attend this webinar: Deploy Top-Performing Java or SQL Code with J Optimizer and DB Optimizer Free Webinar Wednesday, April 8, 2009 11:00 AM PDT / 2:00 PM EDT Register Now! At this Webinar you will learn how to: • Find and fix performance problems in your Java code earlier in the development process. • Quickly pinpoint, down to the line of code, memory and CPU bottlenecks in your Java application. • Profile the performance behavior of your Java EE application and identify performance bottlenecks across Java EE protocols and components. • Uncover inefficiencies in your SQL queries to prevent poor-performing SQL from reaching the production environment. Learn how you can more easily and quickly prevent, find, and fix problems that impact Java application and database performance throughout the development cycle and even post-deployment.

Learn Java – part 14

April 16th, 2010 2 comments


learn Jave programming in the easiest way

Is there a quicker way to download Java SDK?

April 15th, 2010 2 comments

My computer was on the last 2 hours of an 8-hour download of Java EE SDK when it was disconnected from the internet. I neither have high-speed internet or unlimited internet service.

Is there a quicker way to do this?

Powered by Y! Answers
Categories: Java EE Tags: download, Java, quicker, there

JDD08 Adam Bien part1

April 14th, 2010 No comments


Adam Bien’s great presentation Productive Java EE 6 Rethinking Best Practices at Java Developers’ Day 2008 – the biggest Java conference in Poland.

Categories: Java EE, Video Tags: Conference, Java, Seminar, Video

Learn Java part 18

April 14th, 2010 No comments


learn Jave programming in the easiest way

Beginning Database-Driven Application Development in Java EE Using GlassFish

April 14th, 2010 No comments

Learn Java part 19

April 13th, 2010 No comments


learn Jave programming in the easiest way

Learn Java part 10

April 12th, 2010 3 comments


learn Jave programming in the easiest way

Java EE Bootcamp

April 12th, 2010 No comments

Product Description
Summary: Java Web Development Boot Camp is an intensive program created to rapidly migrate traditional programmers into functionally productive web application developers, using Java, Java Server Pages, Java Server Pages Tag Library, HTML, CSS, and JavaScript…. More >>

Java EE Bootcamp

Categories: books, Java EE Tags: books, Bootcamp, Java, Java EE, Products

Learn Java part 12

April 11th, 2010 No comments


learn Jave programming in the easiest way

Learn Java part 8

April 11th, 2010 14 comments


learn Jave programming in the easiest way

Java Server Programming for Professionals – Covers Java EE 5

April 10th, 2010 No comments

Product Description
The book has been written to provide genuine domain knowledge to programmers who wish to learn Java server-side, web-based application development, using Java EE. Learning web development is done through a set of examples and hands on exercises. We hope to encourage you to strongly reinforce your skills by developing of a Personnel Management System. THE TOPICS COVERED IN THE BOOK Overview Of Java Enterprise Edition 5 Introduction To Java, System Architecture, Intro… More >>

Java Server Programming for Professionals – Covers Java EE 5

Java Sockets – You Just Got to Plug Them in

April 9th, 2010 No comments

I realised that programming in Java is quite a fun only after doing it myself. You will be amazed to know that it’s like putting different pieces of puzzle together. You put them relatively in an integrated and coherent manner. The Beauty of it is, that most of the times you dont have to create these pieces yourself. You just customize them according to your need after you get them from an already defined java class or package. It was about programming, now lets talk sumthing about sockets.

Socket is used to establish a point-to-point, bidirectional connection between two entities in a network. Just like a real world socket, it is used to plugin a connection from another source. The connection can be incoming or outgoing or both. Similar is the case at the other end. To understand these sockets  properly, you need to learn a bit about Operating System and its Networking Protocols. Sockets are basically of three types: 1)UNIX Domain Sockets; 2) Internet Domain Sockets; 3) NS domain Sockets.

Java being platform independent Programming language, supports only Internet Domain Sockets as only they are platform independent out of three. These internet domain sockets are distinguished on the basis of Internet protocol they work on… Read more…

Categories: Java Tags: Java, just, Plug, Sockets, Them

How important is it to master C language before proceeding for C++, Java and other high level languages?

April 9th, 2010 4 comments

I’m doing my computer engineering studies in India. We aren’t taught C in extreme detail in our university. Is it crucial or will it make things easier for me in the future if I make sure I get a high level training in C at this initial stage?

Powered by Y! Answers

Java EE Project using EJB 3, JPA and Struts 2 for Beginners,

April 9th, 2010 No comments

Product Description
This book aims serving students, developers, technical leads and to some extent project managers or consultants by demonstrating a structured documented modestly sized project. Learning the project development and documentation is done through the construction of an Online Car Rental System using MySQL Community Server as the data store with Java Server Pages as the delivery mechanism, Struts 2 as the framework, JPA as the Specification and Hibernate 3 as the Implem… More >>

Java EE Project using EJB 3, JPA and Struts 2 for Beginners,

Learn Java part 15

April 8th, 2010 No comments


learn Jave programming in the easiest way

Asymmetric Cryptography in Java

April 8th, 2010 No comments

Security plays a significant role in our day to day life. So far software applications are concerned, security of data is required for authentication and for several validations. Normally while developing the applications, we use the concept of cryptography for password encryption and decryption. Some applications require more security, so they go for high end security system like trusted security certificates. The security mainly focuses on the integrity of the data at the several ends.

Technicalities For data security Java Cryptography provides a suitable framework to implement several kinds of cryptography. However there are basically two types of cryptography. Once is Symmetric Cryptography and Asymmetric Cryptography. When both the ends communicate the secured data with a common key for encryption and decryption, it is called the Symmetric Cryptography. In this case a shared key is used by both the parties to encrypt and decrypt the data. However there is a problem relating to exchange of key for symmetric cryptography. To overcome this problem java provides another approach for the cryptography called Asymmetric Cryptography. In case of Asymmetric cryptography, there will be two keys unlike one key in case of symmetric cryptography. One key is called Private key and other is called Public key. These two keys are generated together and can be used for encryption and decryption. In this case the Public key is used by anyone who wishes to communicate securely with the owner of the Private key. The Private key is used by the main owner and the owner gives the Public key so that they can decrypt the data. In this article I will give you the example on Asymmetric cryptography. You can find more tutorials and concept on Sun’s JCE(Java Cryptography Extension). In my next article, I will provide you the example on Symmetric cryptography.

Complete Example

This example is only meant for learning and not for any specific use. You can take the piece of code to test in your system to learn the above concept.

The following class is used to create the Public key and Private key. This class contains generic methods to generate the Public and Private key. If you run the testharness class, you will find the two files called “Public.key” and “Private.key”. Please go through the java docs mentioned in the methods.

Read more…

Learn Java part 9

April 8th, 2010 16 comments


learn Jave programming in the easiest way

How is java programming different in 64-bit?

April 7th, 2010 2 comments

I am a student and am curious about the differences in using Java SDK6 (Java EE) in 64-bit, as opposed to using 32-bit.

Powered by Y! Answers
Categories: Java Tags: 64-bit, 64bit, different, Java, Programming

Learn Java part 11

April 7th, 2010 4 comments


learn Jave programming in the easiest way