spring framework(一)

1.几种流行的模板方言:jsp,thymeleaf,freemarker
2.mybatis文档:http://www.mybatis.org/mybatis-3/zh/index.html
3.mvn加入mybatis与mysql的pom依赖;
application.properties常用属性了解,如数据库配置;
3.1serverTimezone=Asia/Shanghai——设置上海时区

spring.datasource.url=jdbc:mysql://localhost:3306/toutiao?useUnicode=true&characterEncoding=utf8&serverTimezone=Asia/Shanghai&useSSL=false
spring.datasource.username=root
spring.datasource.password=root
mybatis.config-location=classpath:mybatis-config.xml

猜你喜欢

转载自blog.csdn.net/qq_21122683/article/details/88077188