I am planning to enroll in a short course for java EE but have no basic knowledge in java. Is this OK? Powered by Yahoo! Answers
Tag: Java
Introducing Enterprise Java Application Architecture and Design
Introducing Enterprise Java Application Architecture and Design For a long time, Java Enterprise Edition (Java EE) has been the platform of choice across industries (banking, insurance, retail, hospitality, travel, and telecom, to name a few) for developing and deploying enterprise business applications. Read more on Developer.com
Learn Java Easily With an IDE
An IDE (Integrated Development Environment) is used in software industry in order to help programmers to reduce the time it takes to write code. There are many Java IDE’s available that are used professionally and is a great tool for Java programmers. But IDE’s are not there to help only professionals. You can decrease the…
Example with Source Code: A simple database-driven Java web application (CRUD) implementing JSP and Servlets
You can study and implement the following examples to create a simple Java-based database-driven web application which makes use of JSP and Servlets applying a MVC (model-view-controller) principle. Create the following files: DatabaseConnection.java package sample; import java.sql.*; public class DatabaseConnection { public static Connection getConnection() { Connection con = null; try { // change the…
Absolute Java with Student Resource Disk
Product DescriptionWith the second edition of Absolute Java, best-selling author Walt Savitch offers a comprehensive introduction of the java programming language.  This book gives programmers the tools to master the Java language. He takes full advantage of the new Java 5.0 features and incorporates the new Scanner class. There is comprehensive coverage of generic types, including how to define classes…
Real World Java EE Patterns Rethinking Best Practices
Product DescriptionThis pragmatic book offers the real world knowledge you need to develop lean and maintainable Java EE 5 / 6 applications. Real World Java EE Patterns – Rethinking Best Practices guides you to efficient patterns and best practices in a structured way, with code from real world projects. This book includes coverage of: An…
Sun Certified Enterprise Architect for Java EE Study Guide
ISBN13: 9780131482036 Condition: NEW Notes: Brand New from Publisher. No Remainder Mark. Product Description Definitive, Comprehensive SCEA Exam Prep–Straight from Sun’s Exam Developers! This book delivers complete, focused review for Sun’s new Sun Certified Enterprise Architect (SCEA) for Java EE certification exam–straight from two of the exam’s creators! SCEA lead developer/assessor Mark Cade and SCEA…
Java Now: The Easiest Way to Learn Java in the Least Amount of Time
Product DescriptionIdeal for first-time programmers or programmers new to Java. Java Now! introduces the basics and covers concepts such as creating Java applets, combining music with animated graphics, and writing multi-threaded applications. Java Now! is unique from all other books in that it assumes the reader has no prior programming experience.Amazon.com ReviewJava Now!, which teaches…
Learn Java?
I have ubuntu 7.04 and I want to start learning Java language. I want some free tools for me as newbie, because I am only exprienced in PHP. Thank you! Powered by Yahoo! Answers
Object Persistence in Java
Introduction At the time of development, sometimes it is necessary to store the state of the object in the file system. Some objects may or may not be stored in the file system depending upon the structural intensity of the object graph. In this article, I will focus on two major aspects of the object…