Skip to content
code2java.com
  • HOME
  • ABOUT
code2java.com
  • Java | Java Examples | JSP | Servlets

    Login Example: JSP and Servlets: Part III.

    ByNikhil Naoghare December 20, 2011October 4, 2015

    Hello Friends, This is Part III of this jsp and servlet login tutorial. Check Part I and Part II here. Step 8 ) We are done with the DAOs and Beans. Now we need to create a database from where we will get the authentication details like Username and Password. So, create a database named…

    Read More Login Example: JSP and Servlets: Part III.Continue

  • Java | Java Examples | JSP | Servlets

    Login Example: JSP and Servlets: Part II.

    ByNikhil Naoghare December 20, 2011October 4, 2015

    Hello Friends, This is part II of jsp and servlets login example. Check Part I here. Step 4) Now, we need to create a Servlet file for the redirection of the jsp pages. In the src folder under the package code2java, add the Servlet file and name it as LoginServlet. As discussed earlier this servlet file…

    Read More Login Example: JSP and Servlets: Part II.Continue

  • Java | Java Examples | JSP | Servlets

    Login Example – JSP and Servlets: Part I.

    ByNikhil Naoghare December 20, 2011October 4, 2015

    Hello Friends, This is one of the tutorials on JSP and Servlets. In this we will discuss and create a simple login application using servlets and JSP where we will connect to the DB for the user credentials and then authenticate the users accordingly. First of all we will discuss about what we will need…

    Read More Login Example – JSP and Servlets: Part I.Continue

  • Java | Java Examples

    JDBC – Insert, Update and Delete example.

    ByNikhil Naoghare December 15, 2011October 4, 2015

    Hello Friends, This is the simple example for executing the SQL statements to INSERT, UPDATE or DELETE any records from the database using JDBC. In the below code I have explained all the three operations. When we insert, update or delete any records from the database we are updating the database, hence we use the…

    Read More JDBC – Insert, Update and Delete example.Continue

  • Java | Java Examples

    JDBC and MySQL Connection tutorial.

    ByNikhil Naoghare December 14, 2011October 4, 2015

    Hello Friends, One of the significant characteristic of any programming language is its connectivity with the database and its operations. Java supports many options to connect to the database and one of the most used database is MySql. JDBC (Java Data Base Connectivity) is used for connecting the java code with the database and it…

    Read More JDBC and MySQL Connection tutorial.Continue

  • Java | Java Examples

    Error: java.lang.ClassNotFoundException: com.mysql.jdbc.Driver

    ByNikhil Naoghare December 14, 2011October 4, 2015

    Hello Friends, You may have come across “java.lang.ClassNotFoundException: com.mysql.jdbc.Driver” error/exception while working with java and JDBC. The error occurs mainly when we try to connect to the mySql database from our java code. The error message itself give the clear indication about what we are missing. It says that it is unable to find the Class…

    Read More Error: java.lang.ClassNotFoundException: com.mysql.jdbc.DriverContinue

  • Java | Jira | Selenium

    Selenium Script for removing users from jira groups.

    ByNikhil Naoghare December 8, 2011October 4, 2015

    Hi Team, This is another tutorial from jira side for the removal of jira users from specific or all groups using a simple selenium script. Selenium makes it easier for the user to perform the task which will take real good time when done manually. In the below example, I have not taken the users…

    Read More Selenium Script for removing users from jira groups.Continue

  • Confluence | Jira | Selenium

    Selenium Script to remove users from all groups in Confluence.

    ByNikhil Naoghare December 7, 2011October 4, 2015

    Hello Friends, This is one of the tutorials for Confluence users where they can use the Selenium script as an automation for removing the users from all the groups in Confluence. In this tutorial, I have used one xml file which will contain the usernames and one java file that will contain the selenium script…

    Read More Selenium Script to remove users from all groups in Confluence.Continue

  • Java | Jira | Selenium

    Selenium script to add Custom Field Options in JIRA.

    ByNikhil Naoghare November 28, 2011October 4, 2015

    Hello Friends, This is one of my tutorials regarding the use of Selenium script in the Jira Configuration. Most of the Jira users may know about the Cascading Type of the Custom fields, there we need to add multiple options against the single one. Now, doing this configuration manual y is really a time consuming…

    Read More Selenium script to add Custom Field Options in JIRA.Continue

  • Java | Jira | Selenium

    Selenium Script to add users in JIRA.

    ByNikhil Naoghare November 18, 2011October 4, 2015

    Hello Friends, This is one of the tutorials for Jira users who can use the Selenium script as an automation for adding the users in jira and updating the groups of the users. As you may know, adding the users in jira is a manual effort, and is a kind of repetitive task, so its…

    Read More Selenium Script to add users in JIRA.Continue

  • Java | Selenium

    Selenium Script for Java using Eclipse.

    ByNikhil Naoghare November 18, 2011October 4, 2015

    Hello Friends, This is one of my tutorials regarding the use of Selenium IDE for testing and automation purpose. Most of the users who are in Testing field, they may know about this. But for those who are newbies, this will be a helpful tip. Selenium IDE is a Firefox add-on that allows the user…

    Read More Selenium Script for Java using Eclipse.Continue

  • Java | Java Examples | Servlets

    JSP Redirection from a Servlet.

    ByNikhil Naoghare September 21, 2011October 4, 2015

    Hello Friends, This tutorial is regarding the jsp redirection from a Servlet to a another jsp page. Most of you may need to redirect the user to a jsp page being on the servlet page. This tutorial will help you. There are two ways to achieve this, we will discuss them both.

    Read More JSP Redirection from a Servlet.Continue

Page navigation

Previous PagePrevious 1 2 3 4 5 … 8 Next PageNext

© 2026 Code2Java | LinkedIn

Scroll to top
  • HOME
  • ABOUT