High Performance MySQL
High Performance MySQL Optimization, Backups, Replication, Load Balancing & More In High Performance MySQL you will learn about MySQL indexing and optimization in depth so you can make better use of these key features. You will learn practical replication, backup, and load-balancing strategies with information that goes beyond available tools to discuss their effects in real-life environments. And you'll learn the supporting techniques you need to carry out these tasks, including advanced configuration, benchmarking, and investigating logs.
Mastering Enterprise JavaBeans
Third Edition Published in January 2005, the best-selling book Mastering EJB is now in its third edition and has been updated for EJB2.1 and also features new chapters on security and Web services integration. The book is about EJB concepts, methodology and development. This book also contains a number of advanced EJB topics, giving you a practical and real�world understanding of the subject. By reading this book, you will acquire a deep understanding of EJB. What you will find here This is the official homepage for Mastering EJB Third Edition. Here you can download the entire book in PDF format for free, ...
Processing XML with Java
Processing XML with Java Elliotte Rusty Harold Copyright 2001, 2002 Elliotte Rusty Harold Welcome to Processing XML with Java, a complete tutorial about writing Java programs that read and write XML documents. This is the most comprehensive and up-to-date book about integrating XML with Java (and vice versa) you can buy. It contains over 1000 pages of detailed information on SAX, DOM, JDOM, JAXP, TrAX, XPath, XSLT, SOAP, and lots of other juicy acronyms. This book is written for Java programmers who want to learn how to read and write XML documents from their code
EJB
Display the contents of a Zip file using java
package com.org.servlet; import java.io.*; import java.util.zip.*; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; public class ZipView extends HttpServlet { /** * Display the contents of a zip file */ private static final long serialVersionUID = 1L; public void doPost(HttpServletRequest... [Read more]
Display or download Files using servlet
import java.io.File; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStream; import javax.servlet.ServletException; import javax.servlet.ServletOutputStream; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; /** * @author name * This servlet class is used to display or download the file * */ public... [Read more]
how to override browser cookie from java servlet.
we can override browser cookie using this code. response.setHeader(“p3p”, “CP=IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT”); Bookmark on Delicious Digg this post Recommend on Facebook share via Reddit Share with Stumblers Tweet about it Subscribe to the comments on this post Share and Enjoy: Read More →
Java Applet
Java Applet: java An applet is a special kind of Java program that a browser enabled with Java technology can download from the internet and run. Java applets were introduced in the first version of the Java language in 1995. An applet is typically embedded inside a web-page and runs in the context of the browser. An applet must be a subclass of the java.applet.Applet class, which provides the standard... [Read more]
Entity Beans Overview
Entity Beans Overview Java programmers are already familiar with objects. An entity bean is an object with special properties: It is permanent. Standard Java objects come into existence when they are created in a program. When the program terminates, the object is lost. But an entity bean stays around until it is deleted. A program can create an entity bean, then the program can be stopped... [Read more]
Read More Posts From This Category

