springboot
但-嘎嘎嘎
这个作者很懒,什么都没留下…
展开
-
SpringBoot 之Spring Boot Starter依赖包及作用
原文地址:https://blog.csdn.net/shuxing520/article/details/78213862 Spring Boot 之Spring Boot Starter依赖包及作用spring-boot-starter 这是Spring Boot的核心启动器,包含了自动配置、日志和YAML。spring-boot-starter-amqp 通过sp...转载 2019-01-10 17:11:29 · 262 阅读 · 0 评论 -
springBoot多数据源配置
原文地址:https://www.cnblogs.com/xiaofengfeng/p/9552816.html1、application.properties#sqlserver配置数据库spring.datasource.url=jdbc:sqlserver://localhost:1433;DatabaseName=hg-omspring.datasource.username=sa...转载 2019-01-11 13:50:44 · 119 阅读 · 0 评论 -
springboot教程目录
原文地址:https://blog.csdn.net/qq_31463999/article/details/81627799 快速入门springboot初体验 springboot属性配置文件详解 springboot日志[logback、log4j、log4j2]web基础springboot集成模板引擎实现web应用 springboot统一异...转载 2019-01-11 14:32:59 · 325 阅读 · 0 评论 -
springboot配置文件的所有属性
原文地址:springboot配置文件的所有属性#----------------------------------------#核心属性#----------------------------------------#文件编码banner.charset= UTF-8#文件位置banner.location= classpath:banner.txt#日志配置#日志配置文...转载 2019-01-21 15:50:05 · 242 阅读 · 0 评论 -
springboot项目启动.sh配置,配置开机启动
xxx.sh文中. /etc/profile需要注意添加#!/bin/sh#这里可替换为你自己的执行程序,其他代码无需更改APP_NAME=hg-zhwg-web-1.0.0.jar#启动方法start(){ pid=`ps -ef|grep $APP_NAME|grep -v grep|awk '{print $2}'` if [ "$pid" ]; th...原创 2019-04-22 16:16:43 · 3436 阅读 · 0 评论