-
/*Items类*/ package entity; //商品实体类 public class Items { private int id; private String name; private String city; private int price; private int number; private String picture; public int getId() { return id; } public void setId(int id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getCity() { return city; } public void setCity(String city) { this.city = city; } public int getPrice() { return price; } public void setPrice(int price) { this.price = price; } public int getNumber() { return number; } public void setNumber(int number) { this.number = number; } public String getPicture() { return picture; } public void setPicture(String picture) { this.picture = picture; } }查看全部
-
/*DBHelper类*/ package util; import java.sql.Connection; import java.sql.DriverManager; public class DBHelper { private static final String driver = "com.mysql.jdbc.Driver"; private static final String url="jdbc:mysql://localhost:3306/shopping?useUnicode=true&characterEncoding=utf-8"; private static final String username = "root"; private static final String password = ""; private static Connection conn = null; //静态代码块负责加载驱动 static{ try { Class.forName(driver); } catch (Exception e) { e.printStackTrace(); } } //返回数据库连接对象 public static Connection getConnection() throws Exception{ if(conn==null){ conn = DriverManager.getConnection(url,username,password); return conn; } return conn; }//end getConnection method public static void main(String[] args){ try { Connection conn = DBHelper.getConnection(); if(conn!=null) System.out.println("连接正常"); else System.out.println("连接失败"); } catch (Exception e) { e.printStackTrace(); } } }查看全部
-
表单提交方式查看全部
-
cookie常用方法查看全部
-
jsp中创建与使用cookie查看全部
-
cookie作用查看全部
-
cookie查看全部
-
http://img1.sycdn.imooc.com//54e7281100013b0512000530-120-68.jpg查看全部
-
http协议的无状态性查看全部
-
单例模式返回数据库连接对象查看全部
-
<%! JAVA代码%>在JSP页面中定义变量或者方法查看全部
-
page指令的用法查看全部
-
JSP指令查看全部
-
项目的描述文件存放在META-INF文件夹里面查看全部
-
WEB-INF目录是Java的WEB应用的安全目录,所谓安全就是客户端无法访问,只有服务器端可以访问 web.xml下配置默认欢迎页面 <welcome-file-list> <welcome-file>/index.jsp</welcome-file> </welcome-file-list> classes文件夹,存放的是编译生成的字节码文件 lib文件夹存放的是项目需要的jar包查看全部
举报
0/150
提交
取消