关于springboot:动吧整合环境准备

36次阅读

共计 515 个字符,预计需要花费 2 分钟才能阅读完成。

本文章基于原作者 @Jason 编写,仅用于集体学习

创立数据库,利用分层等步骤省略

创立一个我的项目,增加如下依赖

创立一个 application.yml 文件或把 application.properties 的后缀名改为 yml

在 yml 外面配置

url 中如果端口号为 3306 的话能够把 localhost:3306 简写为 / 

context-path 的作用

 默认加 /,如果在 / 前面加内容的话,例如 /dd
那么拜访门路就是 localhost: 端口号 /dd/ 拜访门路 

thymeleaf

thymeleaf 设置不能间接拜访的页面
cache 是设置缓存,为 true 时批改页面只能重新启动才会显示批改的页面,为 false 则刷新即可
prefix 为前缀,

mybatis

configuration
  default-statement-timeout:30 为超时工夫
  map-underscore-to-camel-case:true 为驼峰命名法
  例如数据库中的 user_name 能够间接映射到 pojo 对象的 username
  mapper-locations:classpath:/mapper/*/*.xml 为 mapper 映射门路 

LOG

com.cy:debug com.cy 包下的日志 

正文完
 0