设置### log4j.rootLogger = debug,stdout,D,E 输出信息到控制抬 log4j.appender.stdout = org.apache.l...
设置### log4j.rootLogger = debug,stdout,D,E 输出信息到控制抬 log4j.appender.stdout = org.apache.l...
REDIS (Redis 配置) 连接工厂使用的数据库索引 spring.redis.database= 0 Redis服务器主机 spring.redis.host= lo...
1、整合jsp的项目需要变成.war包之前spring boot默认自带一个内置的tomcat,不需要打war包,直接通过Jar即可运行。但是如果要整合jsp开发,就需要单独...
spring boot不支持使用动态资源,JSP不支持,推荐使用模板引擎,可以和jsp等价一、引入模板引擎thymeleaf网页= 模板+数据spring.io网站里把spr...
1、STS-> File -> New Spring Starter Project 自动联网Service URL : http://start.spring.ioName...
一.外部配置文件及加载1.在application.properties中添加server.servlet.context-path=/boot所以再访问http://loc...
1.多环境的切换(profile)a.properties文件切换默认boot会读取application.properties环境,多个怎么命名?application-d...
@Conditional扩展注解 作用@ConditionalOnJava 系统的java...
一 系统默认的配置文件1.application.properties格式:k=vserver.port=8888 2.application.yml格式:层级之间有缩进,冒...
操作: 1.使用STS或者IntelliJ IDEA开发spring boot比较方便2.在http://start.spring.io 网站创建一个maven项目com.w...
前言 第一次使用 Spring JPA 的时候,感觉这东西简直就是神器,几乎不需要写什么关于数据库访问的代码一个基本的 CURD 的功能就出来了。下面我们就用一个例子来讲述以...
<template> 编辑博客 博客标题 博客内容 Vue Node ...
<template> {{blog.title}} {{blog.content}} 作者:{{blog.author}} 分类:{{blog.categories}} 删除...
<template> 添加博客 博客标题 博客内容 Vue Node ...
<template> <!-- 自定义指令的参数如果是字符串需要加单引号 --> 博客总览 <!-- 自定义指令v-rainbow 在main.js中定义 --...
<template> <router-link to="/" exact>博客</router-link> <router-link to="/add" exact>写博客<...
import ShowBlogs from './components/ShowBlogs.vue' import AddBlog from './components/Ad...
<template> <router-view></router-view> </template> import AddBlog from './components/...
// The Vue build version to load with the `import` command // (runtime-only or standalo...