会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
凉城
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
8
9
10
11
12
13
14
15
16
···
23
下一页
2019年4月22日
记一次开发平台测试环境的安装
摘要: 1、查询看系统版本 cat /etc/redhat-release 2、安装openjdK yum -y install java-1.8.0-openjdk java-1.8.0-openjdk-devel 安装vim: yum -y install vim 3、安装MongoDB: 安装社区版
阅读全文
posted @ 2019-04-22 22:34 凉城
阅读(258)
评论(0)
推荐(0)
2019年4月4日
IntelliJ Idea 常用快捷键列表
摘要: Ctrl+Shift + Enter,语句完成“!”,否定完成,输入表达式时按 “!”键Ctrl+E,最近的文件Ctrl+Shift+E,最近更改的文件Shift+Click,可以关闭文件Ctrl+[ OR ],可以跑到大括号的开头与结尾Ctrl+F12,可以显示当前文件的结构Ctrl+F7,可以查
阅读全文
posted @ 2019-04-04 17:14 凉城
阅读(321)
评论(0)
推荐(0)
2019年3月15日
微服务相关原理与治理
摘要: 微服务架构没有公认的技术标准和规范或者草案,但业界已经有一些很有影响力的开源微服务架构框架提供了微服务的关键思路,例如 Dubbo 和 Spring Cloud。 目前微服务实现方式主要有两种Dubbo和SpringCloud: 一、Dubbo:(https://www.cnblogs.com/li
阅读全文
posted @ 2019-03-15 13:51 凉城
阅读(1174)
评论(0)
推荐(1)
2019年3月3日
angularJs集成百度地图
摘要: app.controller('mapSignController',function($scope,$rootScope,Message, $window,$uibModalInstance){ var script = document.createElement("script"); script.src = 'http://api.map.baidu.co...
阅读全文
posted @ 2019-03-03 10:41 凉城
阅读(1070)
评论(0)
推荐(0)
2019年2月26日
语音转文字小工具开发Python
摘要: # -*- coding: utf-8 -*- import requests import re import os import time from aip import AipSpeech from tkinter import * from tkinter import ttk import tkinter.messagebox #参数 类型 描述 是否必须 #t...
阅读全文
posted @ 2019-02-26 11:38 凉城
阅读(4720)
评论(1)
推荐(0)
2019年2月23日
java四行代码实现图片下载
摘要: 如下: InputStream in = new URL("http://www.updown/thumbnail.jpg).openStream(); Path temp = Paths.get("temp.png"); Files.copy(in,temp,StandardCopyOption.
阅读全文
posted @ 2019-02-23 11:45 凉城
阅读(889)
评论(0)
推荐(0)
2019年2月18日
将python的代码文件打包成可执行文件
摘要: 1、使用pip install Pyinstaller 命令安装 2、使用命令 pyinstaller -F *.py打包成exe 3、在\dist文件夹下找到exe; 一、pyinstaller相关参数 -F, –onefile 打包一个单个文件,如果你的代码都写在一个.py文件的话,可以用这个,
阅读全文
posted @ 2019-02-18 14:05 凉城
阅读(1952)
评论(0)
推荐(0)
2019年2月16日
SpringBoot整合JdbcTemplate连接Mysql
摘要: 添加依赖: apply plugin: 'org.springframework.boot'apply plugin: 'io.spring.dependency-management' springBoot { executable = true mainClass = 'com.test.App
阅读全文
posted @ 2019-02-16 14:52 凉城
阅读(1536)
评论(0)
推荐(0)
Golang开发环境搭建
摘要: 1、下载golang安装包: 下载地址:https://golang.google.cn/dl/ 2、安装Eclipse 下载goclipse 插件 3、配置 Go 的编译器 4、写代码.
阅读全文
posted @ 2019-02-16 14:06 凉城
阅读(175)
评论(0)
推荐(0)
2019年1月28日
java中的Lamdba表达式和Stream
摘要: 基于JDK 1.8 1、循环: 2、匿名内部类: // 使用匿名内部类 btn.setOnAction(new EventHandler<ActionEvent>() { @Override public void handle(ActionEvent event) { System.out.pri
阅读全文
posted @ 2019-01-28 15:54 凉城
阅读(370)
评论(0)
推荐(0)
上一页
1
···
8
9
10
11
12
13
14
15
16
···
23
下一页
公告