自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(6)
  • 收藏
  • 关注

原创 spring.xml基本配置

xml version="1.0" encoding="UTF-8"?> web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org

2017-10-22 22:23:53 182

原创 web.xml基本配置

xml version="1.0" encoding="UTF-8"?> web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org

2017-10-22 22:22:27 161

原创 springmvc基本配置

xml version="1.0" encoding="UTF-8"?> beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/

2017-10-22 18:45:19 146

原创 mybatis框架开发环境搭建

mybatis:实体类和SQL语句之间建立映射关系。 mybatis的特点: 1:基于SQL语法,简单易学 2:能了解底层封装过程 3:SQL语句封装在配置文件中,便于统一管理和维护,降低程序的耦合度 4:方便程序代码调试 使用mybatis的开发步骤 1:下载mybatis-3.2.2.jar包并导入工程 2:编写mybatis核心配置文件(configuration.xml)

2017-10-22 11:19:25 367

原创 JQuery基本用法

jQuery简单基本语法: $(selector).action() $(document).ready(function(){ 相当于 $(function(){ $("p").click(function(){ $("p").click(function(){ $(this).hide(); $(this).hide(); }); });

2017-10-13 22:30:10 152

原创 数据库常用语法

mysql数据库常用语法 创建数据库create database [if not exists] 数据库名; 删除数据库drop database 数据库名选择数据库 use 数据库名创建表create table table_name (column_name column_type); 例子:create table if not exists table_name( nam

2017-10-13 16:13:01 332

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除