码迷,mamicode.com
首页 >  
搜索关键字:properties edit    ( 13937个结果
达梦数据库初识
首先我个人接触下来的话,发现达梦数据库部署起来比较方便,部署一个完整的数据库的话,只需要短短的十分钟就可以完成调试安装。 DM数据库支持的系统平台也很完善,基本上市场上常见的系统都支持。例如Windows、Cent...
分类:数据库   时间:2020-11-27 11:28:13    阅读次数:13
05_springboot多配置文件
1.多配置文件,其中application.properties中的spring.profiles.active能够灵活的切换使用环境 application.properties spring.mvc.view.prefix=/WEB-INF/jsp/ spring.mvc.view.suffix ...
分类:编程语言   时间:2020-11-26 15:24:02    阅读次数:14
04_springBoot端口和上下文路径
1.在application.properties中添加如下内容 server.port=8888 spring.mvc.servlet.path=/test 2.访问127.0.0.1:8888/test/hello ...
分类:编程语言   时间:2020-11-26 15:04:09    阅读次数:8
使用Druid连接数据库
配置文件 使用properties文件配置相关数据 --driverClassName= com.mysql.cj.jdbc.Driver 驱动加载 --username=root 连接数据库的用户名 --password= 连接数据库的密码 --url=jdbc:mysql://127.0.0.1 ...
分类:数据库   时间:2020-11-26 14:34:04    阅读次数:8
240. Search a 2D Matrix II
Write an efficient algorithm that searches for a value in an m x n matrix. This matrix has the following properties: Integers in each row are sorted i ...
分类:其他好文   时间:2020-11-25 12:59:50    阅读次数:14
抽取jdbc工具类JdbcUtil
1.在src下创建一个jdbc.properties文件 url=jdbc:mysql:///demo user=root password=123 driver=com.mysql.jdbc.Driver 2.编写工具类 public class JdbcUtil { private static ...
分类:数据库   时间:2020-11-25 12:22:17    阅读次数:11
解决我们的配置文件在Maven无法生效问题
<!--在build中配置resources,来防止我们资源导出失败的问题--> <build> <resources> <resource> <directory>src/main/resources</directory> <includes> <include>**/*.properties< ...
分类:其他好文   时间:2020-11-23 12:17:28    阅读次数:4
vscode配置C++多个.cpp文件
1配置文件 一般vscode配置C++有三个文件,它们分别是: 1.1.c_cpp_properties.json 设置编译环境,通过Ctrl+Shift+P,输入C++,在下拉菜单中选择“C/C++ Edit configuration”,系统自动会在.vscode目录下创建该文件,供我们设置编译 ...
分类:编程语言   时间:2020-11-21 12:09:08    阅读次数:8
springcloud(10)Nacos集群(windows环境)
作为服务的注册中心和配置中心自然是离不开集群操作,由于本机没有装Linux,则用window环境下简单配置下集群测试。 1.将本地的nacos文件夹复制三份,(三个及以上才能是集群) 2.修改配置文件 将各自的application.properties文件中的端口修改 server.port=88 ...
分类:编程语言   时间:2020-11-21 12:04:24    阅读次数:8
androidstudio配置http proxy以及配置gradle
以as4.0+为例 1、首先根据gradle-wrapper.properties下载对应的版本 下载完之后在setting中配置gradle路径 2、配置http proxy 这里我使用mirrors.neusoft.edu.cn地址,如图 ...
分类:移动开发   时间:2020-11-21 12:02:56    阅读次数:45
13937条   上一页 1 ... 22 23 24 25 26 ... 1394 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!