建立json数据库笔记

mysql -P3306 -uroot -p123456

一、创建数据库

 

mysql>createdatabase jsp;   

mysql>use jsp

mysql>create table student( 

       ->id int(30) not null primary key, 

       ->name varchar(50), 

       ->age int(30), 

       ->gender varchar(30), 

       ->major varchar(50) 

       ->); 

 

至此创建了名为jsp的数据库,一个名叫student的表.


二、创建json数据库

create database json;

mysql>  create table people(
    ->  name varchar(50),
    ->  address varchar(50),
    ->  age int(30));


show database;


show tables;


插入数据:

insert into people values("临风","北京",16),("猪婆","吉首",15);

 desc people;



 

三、页面制作

 

 

在安装完成的Tomcat6.0中的webapps中新建一个文件夹normal

 

新建一个picWEB-INF文件夹,WEB-INF下新建一个web.xml和新建一个lib文件夹

 

pic 文件夹中放的是图片,网页要用背景图片.自己可以到网上找找。

 

不要太大的。

 

但是名字要改成background.jpg

 

web.xml中的内容为:

 

<?xml version="1.0"encoding="UTF-8"?>

<web-app version="2.5"

       xmlns="http://java.sun.com/xml/ns/javaee"

       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

       xsi:schemaLocation="http://java.sun.com/xml/ns/javaee

       http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">

 <display-name></display-name>   

 <welcome-file-list>

   <welcome-file>index.jsp</welcome-file>

 </welcome-file-list>

</web-app>

你可能感兴趣的:(建立json数据库笔记)