Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test #46

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open

Test #46

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
12 changes: 12 additions & 0 deletions maxlifeproject.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
hello gopinath
how are you mam
how is your daughter
whats happend
increses the your confindental gopi
be focus
be way to talk confident


i want busy the laguage traly bag
that cost is 3100/-

5 changes: 3 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@
</configuration>
</plugin>
<plugin>
<artifactId>maven-war-plugin</artifactId>
<version>2.6</version>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.3.1</version>
<configuration>
<warSourceDirectory>WebContent</warSourceDirectory>
<failOnMissingWebXml>false</failOnMissingWebXml>
Expand Down
Binary file added target/classes/com/srk/dao/StudentDAO.class
Binary file not shown.
Binary file not shown.
Binary file added target/classes/com/srk/servlet/EditStudent.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added target/classes/com/srk/servlet/ViewStudents.class
Binary file not shown.
Binary file added target/classes/vo/Student.class
Binary file not shown.
3 changes: 3 additions & 0 deletions target/maven-archiver/pom.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
artifactId=studentapp
groupId=com.jdevs
version=2.5-SNAPSHOT
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
vo/Student.class
com/srk/dao/StudentDAO.class
com/srk/servlet/DeleteStudent.class
com/srk/servlet/SaveEditedStudent.class
com/srk/servlet/RegistrationController.class
com/srk/servlet/ViewStudents.class
com/srk/servlet/EditStudent.class
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/var/lib/jenkins/workspace/Newproject/src/com/srk/servlet/ViewStudents.java
/var/lib/jenkins/workspace/Newproject/src/com/srk/dao/StudentDAO.java
/var/lib/jenkins/workspace/Newproject/src/vo/Student.java
/var/lib/jenkins/workspace/Newproject/src/com/srk/servlet/DeleteStudent.java
/var/lib/jenkins/workspace/Newproject/src/com/srk/servlet/RegistrationController.java
/var/lib/jenkins/workspace/Newproject/src/com/srk/servlet/SaveEditedStudent.java
/var/lib/jenkins/workspace/Newproject/src/com/srk/servlet/EditStudent.java
Binary file added target/studentapp-2.5-SNAPSHOT.war
Binary file not shown.
3 changes: 3 additions & 0 deletions target/studentapp-2.5-SNAPSHOT/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Manifest-Version: 1.0
Class-Path:

12 changes: 12 additions & 0 deletions target/studentapp-2.5-SNAPSHOT/NewFile.jsp
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>

</body>
</html>
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
8 changes: 8 additions & 0 deletions target/studentapp-2.5-SNAPSHOT/WEB-INF/web.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
<display-name>CustomWebApp</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>

</web-app>
49 changes: 49 additions & 0 deletions target/studentapp-2.5-SNAPSHOT/home.jsp
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Display</title>
<style>
table#nat{
width: 50%;
background-color: #c48ec5;
}
</style>
</head>
<body>
<% String name = request.getParameter("fullname");
String Addr = request.getParameter("address");
String age = request.getParameter("age");
String Qual = request.getParameter("qual");
String Persent = request.getParameter("percent");
String Year = request.getParameter("yop"); %>
<table id ="nat">
<tr>
<td>Full Name</td>
<td><%= name %></td>
</tr>
<tr>
<td>Address</td>
<td><%= Addr %></td>
</tr>
<tr>
<td>Age</td>
<td><%= age %></td>
</tr>
<tr>
<td>Qualification</td>
<td><%= Qual %></td>
</tr>
<tr>
<td>Percentage</td>
<td><%= Persent %></td>
</tr>
<tr>
<td>Year of Passout</td>
<td><%= Year %></td>
</tr>
</table>
</body>
</html>
55 changes: 55 additions & 0 deletions target/studentapp-2.5-SNAPSHOT/index.jsp
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>User Data</title>
</head>
<style>
div.ex {
text-align: right width:300px;
padding: 10px;
border: 5px solid grey;
margin: 0px
}
</style>
<body>
<h1>Student Registration Form</h1>
<div class="ex">
<form action="registrationController" method="post">
<table style="with: 50%">
<tr>
<td>Student Full Name</td>
<td><input type="text" name="fullname"/></td>
</tr>
<tr>
<td>Student Father Name</td>
<td><input type="text" name="fullname"/></td>
</tr>
<tr>
<td>Student Permanent Address</td>
<td><input type="text" name="address"/></td>
</tr>
<tr>
<td>Student Age</td>
<td><input type="text" name="age"/></td>
</tr>
<tr>
<td>Student Qualification</td>
<td><input type="text" name="qual"/></td>
</tr>
<tr>
<td>Student Percentage</td>
<td><input type="text" name="percent"/></td>
</tr>
<tr>
<td>Year Passed</td>
<td><input type="text" name="yop"/></td>
</tr>
</table>
<input type="submit" value="register"/>
</form>
</div>
</body>
</html>