怎么自己打包dubbo.jar?

很多开发可能需要dubbo.jar, 来我这里下载dubbo-2.8.4.jar,https://download.csdn.net/download/wanderc/10930846 只要1积分. 自己打包的话很简单 1. 下载dubbo https://github.com/dangdangdotcom/dubbox/releases 下载自己需要的版本,然后解压得到文件夹dubbox-dubbox-2.8.4 2. cdm打包 ①先要安装maven,并且配置环境变量,注意配置仓库路径 ②
分类: 其他 发布时间: 03-01 23:06 阅读次数: 0

maven注意事项

eclipse 写完pom.xml后maven工程要更新
分类: 其他 发布时间: 03-01 23:05 阅读次数: 0

Spring三(高级装配)

一. 环境与profile 在开发时, 有一个很大的挑战就是将应用程序从一个环境迁移到另一个环境. 开发阶段中, 某些环境相关做法可能并不适合迁移到生产环境中, 甚至即便迁移过去也无法正常工作. 数据库配置, 加密算法以及与外部系统的集成是跨环境部署时会发生变化的几个典型例子.
分类: 其他 发布时间: 03-01 23:05 阅读次数: 0

Ancient Messages UVA - 1103(dfs求联通块)

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/leekerian/article/details/86750508 把整个地图在最外面再加一圈这样外面的空白就变成了联通的了然后就能用求联通块的方法求 #include <iostream> #include <cstring> #include <cstdio> #include <algorithm> #include <vector> #include <set> using name
分类: 其他 发布时间: 03-01 23:04 阅读次数: 0

Abbott's Revenge UVA - 816(带方向bfs)

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/leekerian/article/details/86759701 #include <iostream> #include <cstring> #include <cstdio> #include <queue> #include <vector> using namespace std; const int MAXN=11; struct node{ int r,c,dir;
分类: 其他 发布时间: 03-01 23:04 阅读次数: 0

Ordering Tasks UVA - 10305(拓扑排序dfs)

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/leekerian/article/details/86761603 #include <iostream> #include <cstring> using namespace std; const int MAXN=111; int map[MAXN][MAXN]; int vis[MAXN]; int stack[MAXN]; int top; int n,m; void dfs(i
分类: 其他 发布时间: 03-01 23:04 阅读次数: 0

Parentheses Balance UVA - 673(括号匹配栈)

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/leekerian/article/details/86776519 #include <iostream> #include <cstring> #include <string> using namespace std; const int MAXN=111111; string str[MAXN]; int cont=0; bool islable( char c ) {
分类: 其他 发布时间: 03-01 23:04 阅读次数: 0

Tree Recovery UVA - 536(前序中序构建树)

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/leekerian/article/details/86839895 #include <iostream> #include <string> using namespace std; const int MAXN=111; char l[MAXN],r[MAXN]; string a,b; char build(int l1,int r1,int l2,int r2) { if
分类: 其他 发布时间: 03-01 23:03 阅读次数: 0

Knight Moves UVA - 439(BFS最短路)

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/leekerian/article/details/86901705 #include <iostream> #include <queue> #include <cstring> using namespace std; int vis[11][11]; int mx[8]={1,2,2,1,-1,-2,-2,-1}; int my[8]={2,1,-1,-2,-2,-1,1,2}; s
分类: 其他 发布时间: 03-01 23:03 阅读次数: 0

Prime Ring Problem UVA - 524(回溯枚举子集)

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/leekerian/article/details/87100026 回溯记得标记的更新与返回 #include <iostream> #include <cstring> #include <algorithm> #include <cstdio> using namespace std; int isp[1111]={0}; int n; int num[111]={0}; int co
分类: 其他 发布时间: 03-01 23:03 阅读次数: 0

树的同构(暴力啊)

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/leekerian/article/details/87291584 空树是同构的这,,, #include <iostream> #include <cstring> using namespace std; int l[111],r[111]; char t[111]; int l1[111],r1[111]; char t1[111]; int main() { int n;
分类: 其他 发布时间: 03-01 23:02 阅读次数: 0

Assemble UVA - 12124(二分)

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/leekerian/article/details/87554258 #include <iostream> #include <map> #include <vector> #include <string> #include <algorithm> using namespace std; const int MAXN=1005; struct node { int p,q;
分类: 其他 发布时间: 03-01 23:02 阅读次数: 0

Is This Integration ? UVA - 10209(计算几何)

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/leekerian/article/details/87554367 #include <iostream> #include <cstdio> #include <cmath> using namespace std; const double pi=acos(-1); int main(){ double a; while(cin>>a){ doubl
分类: 其他 发布时间: 03-01 23:01 阅读次数: 0

L2-001 紧急救援

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/leekerian/article/details/87924612 dijkstra求原点到终点的最短路径,用数组标记前继 #include <iostream> #include <cstring> using namespace std; const int MAXN=555; const int INF=0x3fffffff; int n,m; int map[MAXN][MAXN]
分类: 其他 发布时间: 03-01 23:01 阅读次数: 0

潜移默化学会WPF--ProcessBar学习(一) - AYUI框架 - 博客园

原文:潜移默化学会WPF--ProcessBar学习(一) - AYUI框架 - 博客园 给你个demo吧 前台页面很简单 <Window x:Class="ProgressBarDemo.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
分类: 其他 发布时间: 03-01 23:01 阅读次数: 0

Zynq-7000 FreeRTOS(一)

软件版本:VIvado HLx 2018.2 从FreeRTOS的官网中下载源代码: https://www.freertos.org/a00104.html   图:FreeRTOS的官网 上图中,点击能支持的MCU,找到Xilinx的,如下图: 图:SupportMCUs 支持Xilinx的页面 可以看到,支持的工具是GCC(后面我们保留源码文件夹就只保留GCC的就OK。)。   我下载的是v10.0.0的版本(因为在2018.2自带的FreeRTOS BSP是10.0.0的),删除源码中
分类: 其他 发布时间: 03-01 23:01 阅读次数: 0

【UOJ#177】欧拉回路

【UOJ#177】欧拉回路 题面 UOJ 题解 首先图不连通就没啥好搞的了。 对于无向图而言,每个点度数为偶数。 对于有向图而言,每个点入度等于出度。 然后就是一本通上有的做法,直接\(dfs\)一遍就好了。。 #include<iostream> #include<cstdio> using namespace std; #define MAX 100100 inline int read() { int x=0;bool t=false;char ch=getchar();
分类: 其他 发布时间: 03-01 23:01 阅读次数: 0

潜移默化学会WPF(技巧篇)--关于后台如何设置字符串的颜色的方法 - AYUI框架 - 博客园

原文:潜移默化学会WPF(技巧篇)--关于后台如何设置字符串的颜色的方法 - AYUI框架 - 博客园 BrushConverter converter = new BrushConverter(); Brush newFill = (Brush)converter.ConvertFromString("#000000"); e1.Fill = newFill;
分类: 其他 发布时间: 03-01 23:01 阅读次数: 0

Django:学习笔记(9)——用户身份认证

Django:学习笔记(9)——用户身份认证 User
分类: 其他 发布时间: 03-01 23:01 阅读次数: 0

潜移默化学会WPF(样式篇)---改造ComboBox,全新metro风格 - AYUI框架 - 博客园

原文:潜移默化学会WPF(样式篇)---改造ComboBox,全新metro风格 - AYUI框架 - 博客园 1 <!--下拉框样式--> 2 <Style x:Key="ComboBoxFocusVisual"> 3 <Setter Property="Control.Template"> 4 <Setter.Value> 5 <Con
分类: 其他 发布时间: 03-01 23:01 阅读次数: 0