JSTL Java

//web.xml

  "http://java.sun.com/dtd/web-app_2_3.dtd">

  
    jdbc/address
    javax.sql.DataSource
    Container
  


<%@ taglib prefix="sql" uri="http://java.sun.com/jstl/sql" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>


Updating a database using the sql:update tag
  var="conn"
  dataSource="jdbc/address"
/>


Modify Address List



    INSERT INTO AddressList (name, street, city, country, telephone) VALUES (?, ?, ?, ?, ?)