构思:新建一个图片文件类,文件类有两个属性,类型type和路径path,想通过配置文件键值对的形式给type和path赋值 1. Resource文件夹下新建一个pic.properties文件 也可以将pic的键值对放入application.properties中,由springboot默认加载 ...
分类:
编程语言 时间:
2020-02-22 00:44:45
阅读次数:
107
错误 org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: Line 17 in XML document from class path resource [db-config.xml] is invalid; ...
分类:
数据库 时间:
2020-02-21 10:13:00
阅读次数:
174
配置文件 1. 默认的配置文件名为application.properties;数据格式为:key = properties 2. 配置文件目录 路径 说明 file:./config/ 工程文件夹下的config目录 file:/ 工程文件夹目录,如果是maven项目那么和pom.xml是一个层级 ...
分类:
其他好文 时间:
2020-02-12 01:01:52
阅读次数:
78
server.properties配置文件参数说明 必配置属性 每个kafka broker中配置文件server.properties默认必须配置的属性如下: broker.id=0 num.network.threads=2 num.io.threads=8 socket.send.buffer ...
分类:
其他好文 时间:
2020-02-10 14:09:03
阅读次数:
115
https://www.cnblogs.com/yangyh26/p/12263514.html:使用application.yml作为配置文件进行绑定。这一篇将使用application.properties作为配置文件进行绑定。 1.注销application.yml 2.配置applicati ...
分类:
其他好文 时间:
2020-02-06 14:19:26
阅读次数:
70
起因:新安装的idea第一次运行springboot项目报url错误(Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured.) ...
分类:
移动开发 时间:
2020-02-04 14:14:29
阅读次数:
274
1、log4j.properties ### 配置根 ### # log4j.rootLogger = debug,console ,fileAppender,dailyRollingFile,ROLLING_FILE,MAIL,DATABASE log4j.rootLogger = debug,c ...
分类:
其他好文 时间:
2020-01-22 18:26:13
阅读次数:
86
import java.io.InputStream; import java.util.Properties; /** * 读取system.properties配置文件中的参数 */ public class TestProperties { private static Properties ...
分类:
其他好文 时间:
2020-01-18 16:26:31
阅读次数:
66
一、Dubbo整合SpringBoot的方式(1) 1)直奔主题,方式一: pom.xml中引入dubbo-starter依赖,在application.properties配置属性,使用@Service【暴露服务】使用@Reference【引用服务】,选取的是application.propert ...
分类:
编程语言 时间:
2020-01-16 19:22:12
阅读次数:
107
准备工作:需要使用coomos-net jar包。下载地址 一、 上传图片到FTP,文件大小为0的问题,解决:将ftp模式修改为Passive模式就可以了。 //将ftp模式修改为Passive模式 ftpClient.enterLocalPassiveMode(); 二、配置文件的操作,具体介绍请 ...
分类:
编程语言 时间:
2020-01-09 22:33:13
阅读次数:
134