会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
haxnt
博客园
首页
新随笔
联系
订阅
管理
2019年9月28日
在SpringBoot项目新增一个jdbcTemplate数据源
摘要: controller方法调用: 等同于:
阅读全文
posted @ 2019-09-28 16:20 haxnt
阅读(1011)
评论(0)
推荐(0)
编辑
Vue+ElementUI构建前端项目
摘要: 使用webpack创建,确保本地已安装NodeJS,输入命令: npm install -g vue-cli vue init webpack vueEleUI cd vueEleUI npm run dev 浏览器打开 http://127.0.0.1:8080即可看到默认主页 安装Element
阅读全文
posted @ 2019-09-28 16:10 haxnt
阅读(2070)
评论(0)
推荐(0)
编辑
2019年4月28日
Vue应用请求SpringBoot API出现 CORS 跨域请求设置 Invalid CORS request错误
摘要: 1.全局配置 在application.java文件添加CorsRegistry配置 2.局部配置 在具体方法添加@CrossOrigin(origins = “http://localhost:9527”)注解
阅读全文
posted @ 2019-04-28 16:22 haxnt
阅读(16759)
评论(0)
推荐(0)
编辑
2019年3月25日
Java PDF转图片
摘要: maven依赖:
阅读全文
posted @ 2019-03-25 11:20 haxnt
阅读(4627)
评论(1)
推荐(0)
编辑
2018年1月17日
Error:Failed to resolve: com.android.support.constraint:constraint-layout:1.0.2
摘要: 可以换个maven库:
阅读全文
posted @ 2018-01-17 19:53 haxnt
阅读(274)
评论(0)
推荐(0)
编辑
2017年11月19日
归并排序-JAVA实现
摘要: 1 package com.iloveu.xxx; 2 3 public class MergeSort { 4 5 static final int SIZE = 15; 6 7 static void mergeOne(int a[],int b[],int n,int len) 8 { 9 i...
阅读全文
posted @ 2017-11-19 11:35 haxnt
阅读(1147)
评论(0)
推荐(0)
编辑
2017年7月21日
c语言利用读取命令行(多行读取)
摘要: #include #include #include int main() { FILE *fh = popen("ifconfig 2> /dev/null", "r"); char iwstation[4096] = {0}; char total[4096] ={0}; while(fgets(iwstation, 4096, fh)!=NULL){ strc...
阅读全文
posted @ 2017-07-21 16:42 haxnt
阅读(2704)
评论(0)
推荐(0)
编辑
2017年5月20日
Plugin Kotlin was not installed: Cannot download
摘要: 到 https://plugins.jetbrains.com/plugin/6954-kotlin下载对应版本(右键复制链接地址,用迅雷下载),放到androidstudio安装目录下的plugins目录下,重启ide即可
阅读全文
posted @ 2017-05-20 11:02 haxnt
阅读(3356)
评论(0)
推荐(0)
编辑
2017年5月16日
C语言函数-socket
摘要: int sock = socket(AF_INET, SOCK_STREAM, 0) //建立一个流式套接字,stream是流的意思,Tcp连接,提供序列化的、可靠的、双向连接的字节流。支持带外数据传输 先占个坑,以后再详细介绍其他参数
阅读全文
posted @ 2017-05-16 15:18 haxnt
阅读(693)
评论(0)
推荐(0)
编辑
C语言函数-strcat
摘要: strcat: 将两个char类型连接。 char d[20]="GoldenGlobal"; char *s="View"; strcat(d,s); 结果放在d中 printf("%s",d); 输出 d 为 GoldenGlobalView (中间无空格) d和s所指内存区域不可以重叠且d必须
阅读全文
posted @ 2017-05-16 15:07 haxnt
阅读(299)
评论(0)
推荐(0)
编辑
下一页
公告