<%@taglib uri="dbtags" prefix="jdbc" %>
<%@taglib uri="ietags" prefix="pr" %>
For dbtags: Taglib URI = dbtags
Taglib Location = /WEB-INF/tlds/dbtags.tld
For ietags: Taglib URI = ietags
Taglib Location = /WEB-INF/tlds/ietags.tld
Make sure to remove two entries that reference .jar files that
IDE added automatically after unmounting and mounting the web module directory
again.
For the ShopCart.jsp file, the import line (second line)
should look like this:
<%@page import="java.util.*, Cart, CartLineItem" %>
For the PlaceOrder.jsp file, add the following import line
after the first line:
<%@page import="Cart, CheckOutBean" %>
See also | |
Using Advanced Features |