随笔分类 - JavaWeb
摘要:public void init(ServletConfig config) throws ServletException { this.config=config; System.out.println("init..."); } public ServletConfig getServletC
阅读全文
摘要:package com.itheima.web; import javax.servlet.*; import javax.servlet.annotation.WebServlet; import java.io.IOException; //urlPatterns :访问路径 @WebServl
阅读全文
摘要:use mybatis; -- 删除tb_brand表 drop table if exists tb_brand; -- 创建tb_brand表 create table tb_brand ( -- id 主键 id int primary key auto_increment, -- 品牌名称
阅读全文