-
Responsebody 返回html正文查看全部
-
Integer 才可以做非空校验
查看全部 -
添加编辑页面查看全部
-
删除方法,微信确认框的写法。查看全部
-
访问页面数据代码查看全部
-
要将截图左下角的最后一项勾选上访问才有效查看全部
-
onShow方法的编写查看全部
-
微信页面元素查看全部
-
Sessionfactory主要处理事务的提交
加载一个sqlsessionfactory的bean
查看全部 -
@configuration
//配置mybatis mapper的扫描路径
@MapperScan ("com.imooc.demo.dao")
查看全部 -
pom的依赖的改变会影响internal jar的包查看全部
-
创建项目--从线上网址下载jar包查看全部
-
sping boot 以最小的配置来跑sping 程序
提倡用扁平化的配置代替xml配置文件
支持sql and nosql
内置运行时环境支持, tomcat, jetty and undertow
能够在idea ,sping tool,netbeans 运行
idea 分为 社区版, 和企业版(带web开发,1.7以上)
idea 创建项目 需要1.8的jdk
选择 spring initializr 创建, 然后检查maven
gitignore 不需要git 管理的东西
使用spingbootapplicat 启动项目
pom 文件:
sping-boot-starter-parent maven独有的, 引用管理的作用, 管理版本 , 能够识别 *.properties ,yml 这些文件, 可以区分线上线下的配置文件
restControl =(control + responsebody)
搞一个路由(requestMapping)
sping boot 入门
查看全部 -
//访问端口改变http://localhost:8082/hello server.port=8082 //访问路径http://localhost:8082/demo/hello server.servlet.context-path=/demo jdbc.driver=com.mysql.jdbc.Driver jdbc.url=jdbc:mysql://localhost:3306/demo?useUnicode=true&characterEncoding=utf8&useSSL=false jdbc.username=root jdbc.password=root #Mybatis mybatis_config_file=mybatis-config.xml mapper_path=/mapper/**.xml entity_package=con.imooc.demo.entity
查看全部 -
表的设计与创建
CREATE
TABLE
`tb_area` (
`area_id`
int
(2)
NOT
NULL
AUTO_INCREMENT,
`area_name`
varchar
(200)
NOT
NULL
,
`priority`
int
(2)
NOT
NULL
DEFAULT
'0'
,
`create_time` datetime
DEFAULT
NULL
,
`last_edit_time`
timestamp
NULL
DEFAULT
CURRENT_TIMESTAMP
ON
UPDATE
CURRENT_TIMESTAMP
,
PRIMARY
KEY
(`area_id`),
UNIQUE
KEY
`UK_AREA` (`area_name`)
) ENGINE=InnoDB AUTO_INCREMENT=4
DEFAULT
CHARSET=utf8;
查看全部
举报