Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
71 changes: 71 additions & 0 deletions Advance_Java_Assignment/build.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- You may freely edit this file. See commented blocks below for -->
<!-- some examples of how to customize the build. -->
<!-- (If you delete it and reopen the project it will be recreated.) -->
<!-- By default, only the Clean and Build commands use this build script. -->
<!-- Commands such as Run, Debug, and Test only use this build script if -->
<!-- the Compile on Save feature is turned off for the project. -->
<!-- You can turn off the Compile on Save (or Deploy on Save) setting -->
<!-- in the project's Project Properties dialog box.-->
<project name="Advance_Java_Assignment" default="default" basedir=".">
<description>Builds, tests, and runs the project Advance_Java_Assignment.</description>
<import file="nbproject/build-impl.xml"/>
<!--

There exist several targets which are by default empty and which can be
used for execution of your tasks. These targets are usually executed
before and after some main targets. They are:

-pre-init: called before initialization of project properties
-post-init: called after initialization of project properties
-pre-compile: called before javac compilation
-post-compile: called after javac compilation
-pre-compile-single: called before javac compilation of single file
-post-compile-single: called after javac compilation of single file
-pre-compile-test: called before javac compilation of JUnit tests
-post-compile-test: called after javac compilation of JUnit tests
-pre-compile-test-single: called before javac compilation of single JUnit test
-post-compile-test-single: called after javac compilation of single JUunit test
-pre-dist: called before archive building
-post-dist: called after archive building
-post-clean: called after cleaning build products
-pre-run-deploy: called before deploying
-post-run-deploy: called after deploying

Example of pluging an obfuscator after the compilation could look like

<target name="-post-compile">
<obfuscate>
<fileset dir="${build.classes.dir}"/>
</obfuscate>
</target>

For list of available properties check the imported
nbproject/build-impl.xml file.


Other way how to customize the build is by overriding existing main targets.
The target of interest are:

init-macrodef-javac: defines macro for javac compilation
init-macrodef-junit: defines macro for junit execution
init-macrodef-debug: defines macro for class debugging
do-dist: archive building
run: execution of project
javadoc-build: javadoc generation

Example of overriding the target for project execution could look like

<target name="run" depends="<PROJNAME>-impl.jar">
<exec dir="bin" executable="launcher.exe">
<arg file="${dist.jar}"/>
</exec>
</target>

Notice that overridden target depends on jar target and not only on
compile target as regular run target does. Again, for list of available
properties which you can use check the target you are overriding in
nbproject/build-impl.xml file.

-->
</project>
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
SMAP
User_005fhome_jsp.java
JSP
*S JSP
*F
+ 0 User_home.jsp
User_home.jsp
*L
1,19:44
20,2:64
21:66
22:67,3
23,14:70
*E
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
package org.apache.jsp;

import javax.servlet.*;
import javax.servlet.http.*;
import javax.servlet.jsp.*;

public final class User_005fhome_jsp extends org.apache.jasper.runtime.HttpJspBase
implements org.apache.jasper.runtime.JspSourceDependent {

private static final JspFactory _jspxFactory = JspFactory.getDefaultFactory();

private static java.util.List<String> _jspx_dependants;

private org.glassfish.jsp.api.ResourceInjector _jspx_resourceInjector;

public java.util.List<String> getDependants() {
return _jspx_dependants;
}

public void _jspService(HttpServletRequest request, HttpServletResponse response)
throws java.io.IOException, ServletException {

PageContext pageContext = null;
HttpSession session = null;
ServletContext application = null;
ServletConfig config = null;
JspWriter out = null;
Object page = this;
JspWriter _jspx_out = null;
PageContext _jspx_page_context = null;

try {
response.setContentType("text/html");
pageContext = _jspxFactory.getPageContext(this, request, response,
null, true, 8192, true);
_jspx_page_context = pageContext;
application = pageContext.getServletContext();
config = pageContext.getServletConfig();
session = pageContext.getSession();
out = pageContext.getOut();
_jspx_out = out;
_jspx_resourceInjector = (org.glassfish.jsp.api.ResourceInjector) application.getAttribute("com.sun.appserv.jsp.resource.injector");

out.write("<html>\n");
out.write(" <body>\n");
out.write(" <div id=\"index\">\t\n");
out.write(" <center>\n");
out.write(" <hr>\n");
out.write(" <hr>\n");
out.write(" <a href=\"showdata.jsp\">Show Data</a>\n");
out.write(" <a href=\"search_info.jsp\">Search User</a>\n");
out.write(" <a href=\"delete_info.jsp\">Delete User</a>\n");
out.write(" <a href=\"update_info.jsp\">Update</a>\n");
out.write(" <a href=\"logout.jsp\">Logout</a>\n");
out.write(" \n");
out.write(" <hr>\n");
out.write(" <hr>\n");
out.write(" </center>\n");
out.write(" <div>\t\n");
out.write("\n");
out.write(" <div>\t\n");
out.write(" ");

String email = (String) session.getAttribute("email");

out.write("\n");
out.write(" <h2 class=\"title\">Welcome , ");
out.print(email);
out.write("</h2>\n");
out.write(" <div class=\"content\">\n");
out.write(" <p>\n");
out.write(" Welcome to the Java Web Application, This application performed all <strong>crud</strong> operation and have also have functionality of <strong> session management </strong> with customized web View.\n");
out.write(" \n");
out.write(" </p>\n");
out.write(" \n");
out.write(" \n");
out.write(" </div>\n");
out.write(" </div>\n");
out.write(" <div style=\"clear: both;\">&nbsp;</div>\n");
out.write(" </div>\n");
out.write(" </div>\n");
out.write(" </body>\n");
out.write("</html>");
} catch (Throwable t) {
if (!(t instanceof SkipPageException)){
out = _jspx_out;
if (out != null && out.getBufferSize() != 0)
out.clearBuffer();
if (_jspx_page_context != null) _jspx_page_context.handlePageException(t);
else throw new ServletException(t);
}
} finally {
_jspxFactory.releasePageContext(_jspx_page_context);
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
SMAP
home_jsp.java
JSP
*S JSP
*F
+ 0 home.jsp
home.jsp
*L
1,18:44
19,2:63
20:65
21:66,3
22,14:69
*E
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
package org.apache.jsp;

import javax.servlet.*;
import javax.servlet.http.*;
import javax.servlet.jsp.*;

public final class home_jsp extends org.apache.jasper.runtime.HttpJspBase
implements org.apache.jasper.runtime.JspSourceDependent {

private static final JspFactory _jspxFactory = JspFactory.getDefaultFactory();

private static java.util.List<String> _jspx_dependants;

private org.glassfish.jsp.api.ResourceInjector _jspx_resourceInjector;

public java.util.List<String> getDependants() {
return _jspx_dependants;
}

public void _jspService(HttpServletRequest request, HttpServletResponse response)
throws java.io.IOException, ServletException {

PageContext pageContext = null;
HttpSession session = null;
ServletContext application = null;
ServletConfig config = null;
JspWriter out = null;
Object page = this;
JspWriter _jspx_out = null;
PageContext _jspx_page_context = null;

try {
response.setContentType("text/html");
pageContext = _jspxFactory.getPageContext(this, request, response,
null, true, 8192, true);
_jspx_page_context = pageContext;
application = pageContext.getServletContext();
config = pageContext.getServletConfig();
session = pageContext.getSession();
out = pageContext.getOut();
_jspx_out = out;
_jspx_resourceInjector = (org.glassfish.jsp.api.ResourceInjector) application.getAttribute("com.sun.appserv.jsp.resource.injector");

out.write("<html>\n");
out.write(" <body>\n");
out.write(" <div id=\"index\">\t\n");
out.write(" <center>\n");
out.write(" <hr>\n");
out.write(" <hr>\n");
out.write(" <a href=\"login.jsp\"> Login</a> |\n");
out.write(" <a href=\"register.jsp\">Register</a> |\n");
out.write(" <a href=\"showdata.jsp\">Show Data</a>\n");
out.write(" <a href=\"search_info.jsp\">Search User</a>\n");
out.write(" <a href=\"delete_info.jsp\">Delete User</a>\n");
out.write(" <hr>\n");
out.write(" <hr>\n");
out.write(" </center>\n");
out.write(" <div>\t\n");
out.write("\n");
out.write(" <div>\t\n");
out.write(" ");

String email = (String) session.getAttribute("email");

out.write("\n");
out.write(" <h2 class=\"title\">Welcome , ");
out.print(email);
out.write("</h2>\n");
out.write(" <div class=\"content\">\n");
out.write(" <p>\n");
out.write(" Welcome to the Java Web Application, This application performed all <strong>crud</strong> operation and have also have functionality of <strong> session management </strong> with customized web View.\n");
out.write(" \n");
out.write(" </p>\n");
out.write(" \n");
out.write(" \n");
out.write(" </div>\n");
out.write(" </div>\n");
out.write(" <div style=\"clear: both;\">&nbsp;</div>\n");
out.write(" </div>\n");
out.write(" </div>\n");
out.write(" </body>\n");
out.write("</html>");
} catch (Throwable t) {
if (!(t instanceof SkipPageException)){
out = _jspx_out;
if (out != null && out.getBufferSize() != 0)
out.clearBuffer();
if (_jspx_page_context != null) _jspx_page_context.handlePageException(t);
else throw new ServletException(t);
}
} finally {
_jspxFactory.releasePageContext(_jspx_page_context);
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
SMAP
index_jsp.java
JSP
*S JSP
*F
+ 0 index.jsp
index.jsp
*L
1,62:44
*E
Loading