Skip to main content

Posts

Servlets part1: Introduction

Session Contents ·          Static Vs Dynamic Web Pages ·          Servlet Basics ·          Deploying Tomcat Web Container ·          Setting up Tomcat with Eclipse ·          Creating web application with Eclipse IDE Dynamic webpages: Dynamic sites, on the other hand, construct HTML pages on fly as they are requested, using server side scripting languages such as Servlets, JSP, PHP , ASP etc. Depending on the information site visitor requests for, the content for web pages is dynamically generated and if required, retrieving data from the database. JAVA Java is arguably the most powerful platform for server-side web development  today. From small Java programs (Servlets) that handle Web page requests to Java  Server Pages (JSPs) that combine ...

Bithiri Sathi One Side Angry Show

Bithiri Sathi One Side Angry Show

bithiri sathi dubsmash

Bithiri sathi dubsmash

JSP :part 18; Model View Controller Architecture

Model View Controller Architecture In Model 1, a request is made to a JSP and then that JSP handles all responsibilities for the request, including processing the request, validating data, handling the business logic, and generating a response. The Model 1 architecture is commonly used in smaller, simple task applications due to its ease of development. Although conceptually simple, this architecture is not conducive to large-scale application development because, inevitably, a great deal of functionality is duplicated in each JSP. Also, the Model 1 architecture unnecessarily ties together the business logic and presentation logic of the application. JSP Model 2 Architecture Model 2 is a complex design pattern used in the design of Java Web applications which separates the display of content from the logic used to obtain and manipulate the content. Since Model 2 drives a separation between logic and displ...

Lenovo Zuk Z1 Mobile Specification

Lenovo Zuk Z1  Mobile Specification History: The ZUK Z1 is an Andriod smartphone     manufactured by ZUK Mobile   , in collaboration withLenovo . Unveiled in August 2015, it is the first product by ZUK. In most markets outside china , the ZUK Z1 ships with the Cyanogen os     operating system pre-installed. Cyanogen OS is a commercial variant of  CyanogenMod. In China , the ZUK Z1 ships with its own ZUI distribution, based on Android 5.1 "Lollipop". . Specifications: Lenovo Zuk Z1  Mobile Specification processor Quad Core, 2.5 GHz RAM 3 GB RAM CAMERA 13 MP Primary Dual LED Flash  and 8 MP Secobdary Camera Secondary 5 MP Network Dual sim and 4G connectvity Launch 23/06/2016 Body  Dimensions:155.7 x 77.3 x 8.9 mm (6.13 x 3.04 x 0.35 in) ...

Bitri sathi Six Pack

JSP tutorial part 17: JSP property actions

The <jsp:setProperty> Action: The setProperty action sets the properties of a Bean. There are two basic ways to use the setProperty action: 1. You can use jsp:setProperty after, but outside of, a jsp:useBean element, as below: <jsp:useBean id="myName" ... /> ....... <jsp:setProperty name="myName" property="someProperty" .../> In this case, the jsp:setProperty is executed regardless of whether it is a new bean or an existing bean. 2. A second context in which jsp:setProperty can appear is inside the body of a jsp:useBean element, as below: <jsp:useBean id="myName" ... > ... <jsp:setProperty name="myName" property="someProperty" .../> </jsp:useBean> Here, the jsp:setProperty is executed only if a new object is instantiated, not if an existing one is found. Following are the list of attributes associated with setProperty action: Attribute Des...