- 浏览: 1524302 次
- 性别:
- 来自: 厦门
最新评论
-
pgx89112:
大神,请赐我一份这个示例的项目代码吧,万分感谢,1530259 ...
spring的rabbitmq配置 -
string2020:
不使用增强器 怎么弄?
OpenJPA的增强器 -
孟江波:
学习了,楼主,能否提供一份源代码啊,学习一下,十分感谢!!!4 ...
spring的rabbitmq配置 -
eachgray:
...
spring-data-redis配置事务 -
qljoeli:
学习了,楼主,能否提供一份源代码啊,学习一下,十分感谢!!!1 ...
spring的rabbitmq配置
文章列表
满江红 :
http://wiki.redsaga.com/confluence/display/RSTEAM/Home
MySQL:
《mysql 5 权威指南》英文版: http://d.download.csdn.net/down/644846/rocning
《MYSQL Cookbook第2版 中文版》: http://www.eshu123.com/plus/download.php?open=0&aid=4862&cid=3
MySQL监控软件: ZABBIX
StarUML: http://nchc ...
CTO技术管理要素包括哪些方面?
- 博客分类:
- 技术管理岗位
CTO技术管理的要素包括以下5个方面,下面就简单介绍一下。
1、角色认知
角色认知是管理者的认知取向,包括从技术人员到管理者的角色转变,以及一些典型的误区。
2、管理规划
规划是CTO技术管理的“方 ...
dubbo java.lang.ClassCastException: java.lang.String cannot be cast to java.lang.Class
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'xxxxxController': Injection of @DubboReference dependencies is failed; nested exception is java.lang.ClassCastException: ja ...
HttpRequestClient
- 博客分类:
- Java
http请求工具
public class WebConstant {
// HTTP参数传递方式
public final static int by_header = 1;
public final static int by_params = 2;
}
import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.lang.reflect.Field;
import java.math.BigDecimal;
import java.n ...
在
db.award.aggregate(
// Pipeline
[
// Stage 1
{
$lookup: { "from" : "merchant" , "localField" : "merchantId" , "foreignField" : "_id" , "as" : "merchant"}
},
// Stage 2
{
$unwind: " ...
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script type="text/javascript" src="js/jquery.min.js"></script>
</head>
<body>
<input type="text" id=&q ...
在tomcat启动时报invalid LOC header (bad signature)错误
Caused by: java.lang.IllegalArgumentException: java.util.zip.ZipException: invalid LOC header (bad signature)
at org.apache.catalina.webresources.AbstractSingleArchiveResourceSet.initInternal(AbstractSingleArchiveResourceSet.java:142)
at org.a ...
在spring3与web.xml的环境中使用spring的profile
spring-ftp-file-service.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:xsi=" ...
#string到int
int,err:=strconv.Atoi(string)
#string到int64
int64, err := strconv.ParseInt(string, 10, 64)
#int到string
string:=strconv.Itoa(int)
#int64到string
string:=strconv.FormatInt(int64,10)
Float64转int,Int转Unit8
import (
"math"
"fmt"
)
func Uint8FromInt(n i ...
解决golang.org不可访问问题
- 博客分类:
- golang
在goland开发工具启动经常会报http://golang.org/x/text?go-get=1等golang.org域名不可访问问题。
The following issues were found in Gopkg.toml:
✗ unable to deduce repository and source type for "golang.org/x/text": unable to read metadata: unable to fetch raw metadata: failed HTTP request to URL "http://g ...
./Postman: error while loading shared libraries: libgconf-2.so.4: cannot open shared object file: No such file or directory网上很多人说是下载libgconf-2-4这个包。但实际上在ubuntu搜索应该搜索以下这个包。解决办法:sudo apt-get install gconf2-common
本文参照Angularjs 中使用 layDate 日期控件进行修改。
laydate控件版本采用5.0.7,下载地址github。原版的package.json文件好像是有编码问题。需要将该文件转到utf-8格式的。
/**
* 使用示例:
* <p>
* <ul>
* <li> 基本日期选择:<input type="text" lay-date-picker="" ng-model="date" placeholder="日 ...
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>简易marquee效果</title>
<style type="text/css">
#marquee2{
width:400px;
/**超出元素部分隐藏*/
o ...
本文参考自后补全的代码:http://blog.csdn.net/liwusen/article/details/52078435
<body ng-app="myapp">
<h1>动态编译指令,动态编译指令模板内容</h1>
<div class="container" ng-controller="MyController">
<button ng-click="addDirective()">添加动态指令</button&g ...