Hibernate Architecture
Hibernate architecture has three main components:
- Connection Management
- Transaction management
- Object relational mapping:
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.
XML
file for its configuration. You can’t give any name to this file, this file is usually calledbuild.xml
. It builds are based on three blocks: tasks, targets and extension points .<target name="compile">
...................
</target>
<target name="run" depends="compile">
...................
</target>
build.xml
file you can specify the default target. Ant will execute this target, if no explicit target is specified.package javabynataraj; import javax.servlet.jsp.*; import javax.servlet.jsp.tagext.*; import java.io.*; public class ExampleTag extends SimpleTagSupport { public void doTag() throws JspException, IOException { JspWriter out = getJspContext().getOut(); out.print("<b>Hello World!</b>"); } }
<?xml version="1.0" encoding="UTF-8" ?> <taglib xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd" version="2.0"> <tlib-version>1.0</tlib-version> <short-name>csajsp-taglib</short-name> <tag> <description>Example tag</description> <name>example</name> <tag-class>package.TagHandlerClass</tag-class> <body-content>empty</body-content> </tag> </taglib>
<prefix:tag/> or <prefix:tag></prefix:tag>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML> <HEAD> <TITLE>Example JSP page</TITLE> <LINK REL=STYLESHEET HREF="JSP-Styles.css" TYPE="text/css"> </HEAD> <BODY> <%@ taglib uri="/WEB-INF/tlds/example.tld" prefix="test" %> <test:example/> <test:example></test:example> </BODY></HTML>
<pg:pager maxPageItems="10" prevNextUrl="/myproj/auto/sheetAuditResults.do" url="/myproj/auto/sheetAuditResults.do" name="caseResponseForm"> ------- ------------ </pg:pager>
<jsp:useBean id="pnUrlName" class="java.lang.String" scope="page" /> <jsp:useBean id="urlName" class="java.lang.String" scope="page" /> <%pnUrlName = request.getContextPath()+"/auto/sheetAuditResults.do"; %> <%urlName = request.getContextPath()+"/auto/sheetAuditResults.do"; %> <pg:pager maxPageItems="10" prevNextUrl="<%=pnUrlName %>" url="<%=urlName %>" name="auditInformationResultsResponseForm">
<img src="/myproj/images/calbtn.gif" border="0" alt="popup selection calendar ">We have to change the static contextPath /myproj to dynamically.
<%@ taglib uri="/WEB-INF/tlds/struts-core.tld" prefix="c" %> <c:set var="path" value="${pageContext.request.contextPath}"/>
<img src="<c:out value="${path}"/>/images/calbtn.gif" border="0" alt="popup selection calendar">
caseWindow = window.open('/myapp/cases/displayCase.do?previousPage=addDeposit'+jsessionId,' DN_modalEms','width=800,height=600,resizable=yes, scrollbars=yes,status=yes,menubar=no,toolbar=no,modal=yes');
<c:set var="path" value="${pageContext.request.contextPath}"/>use the contextPath in the javascript function:
<script type="text/javascript"> contextPath = '<c:out value="${path}"/>'; </script>
modalCaseWindow = window.open(contextPath+'/cases/displayCreateCase1.do?previousPage=addDeposit'+jsessionId,'DN_modalEms', 'width=800,height=600,resizable=yes,scrollbars=yes, status=yes,menubar=no,toolbar=no,modal=yes');
<a href="/myproj/updateMyDeviceId.do?device=' + ent.deviceId + '">';Change the static context root reference to dynamic contextPath for the hyperlink in jsp file as given below.
<a href="'+ contextPath +'/updateMyDeviceId.do?device=' + ent.deviceId + '">';
if (data.status == 1) { $('#status').text('Enabled'); $('#circle').attr('src', '/myproj/images/green-circle.png') $('#statusButton').val('Disable'); }Change the context path in the if condition. For this define a variable as ctx to get contextPath using request.getContextPath() method.
<script>var ctx = "<%=request.getContextPath()%>"</script>Declare the ctx variable below to the taglib uri tags then we can use any where in the program.
if (data.status == 1) { $('#status').text('Enabled'); $('#circle').attr('src',ctx+'/images/green-circle.png') $('#statusButton').val('Disable'); }