- 浏览: 78987 次
- 性别:
- 来自: 杭州
最新评论
-
huazhebia:
那前端怎么解压缩呢,jquery
手机端后台向前台传输数据的二进制压缩方法
文章列表
源文件
public static String get(String key) {
return get(key, String.class);
}
打jar包后的class文件
public static String get(String key) {
return (String)get(key, String.class);
}
如果调用的get方法没有判空,则可能报npe
使用场景:使用dubbo服务,对应了dev,test,prod等环境的配置文件,如:filter-dev.properties,filter-test.properties,filter-prod.properties.不同的properties里面对于同一个变量需要有不同的配置,比如我设定了每日短信发送条数上线:sms.limit.count=20000
接手的是老代码,对应配置的调用有两种方式,
一种是在xml文件中声明一个对PropertyPlaceholderConfigurer的继承类PropertiesLoader
<bean id="propertyPlace ...
1.mvn clean package :打包
2.mvn clean deploy:部署上传私服
如果打包时,显示对应test有问题,可以直接略过:-Dmaven.test.skip=true -Dmaven.javadoc.skip=true
部署的时候pom中需要有对应的私服地址,包括releases,snapshots
比如:
<distributionManagement>
<repository>
<id>iBlue-releases</id>
<url>http://10.20 ...
zset是一个排序集合,我主要用来给用户进行排名,以及对一个指定区间的数据进行统计,可以用来替代mysql中between and语句 ,列举几个场景如何利用zset解决需求
业务场景:用户每天都有刷牙数据产生,刷牙数据包括刷牙时长, ...
开发微信服务,有个上传头像的功能,前端用html5的方法来上传头像
<img id="babyHead"src="$session.getAttribute('picUrl')"style="width:74px;height:74px;border-radius:37px;"/>
<label class="camera"><i class="fa fa-camer ...
微信服务号中做运营活动,需要把页面分享到朋友圈,或者转发用户。这个功能很普遍,在写的时候有几个问题需要注意,在此记录,方便新接触的同学有个参考。
首先,如果之前没有接触过这个接口,还是要看下官方文档,有个基础的印象,链接如下:https://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1421141115&token=&lang=zh_CN
接下来,可以自己试一下,如果还是有点问题,比如wx.config一直出现invalid signature,可以来参考下我的写法。
基本的方法就是js调用微信的wx.config ...
linux服务器上,服务端访问https链接时,报错:javax.net.ssl.SSLException: java.security.ProviderException: java.security.KeyException 在之前的服务器上没有问题,但是在阿里云新装了个环境,就报这个错误。查了一下,原来安装的jdk版本是openjdk 而不是sun原有的jdk
修改办法是更换jdk 原来我在服务器上安装jdk的时候为了图方便,就用yum命令来安装了, yum -y install java-1.7.0-openjdk* 那删除也好办,就用yum -y remove java*来删除
...
这个问题出现的很奇怪,基本就如题目所说,编译可以通过,但是在运行时找不到刚写的service接口
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'caseActionController': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No matching b ...
搭建一个maven项目,mvc架构,web端使用springmvc,主要记录下搭建时遇到的问题
1.主pom.xml文件语句 名称为hibeauty-modules
mvn archetype:generate -DgroupId=com.hibeauty -DartifactId=hibeauty-modules -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=fals ...
报错信息:
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-war-plugin:2.1.1:w
ar (default-war) on project hibeauty-web: Error assembling WAR: webxml attribute
is required (or pre-existing WEB-INF/web.xml if executing in update mode) -> [Help 1]
修改方法:
在主pom.xml中的<build><plugins& ...
eclipse中,override突然不能用,明明接口有这个方法,但是实现类就是不能写override,写了就报错。因为你新建的工程jdk没有用java1.6
解决方法:右键单击项目->properties->java compiler->compiler compilance level ->1.6
sql分组求和取最大值
- 博客分类:
- postgresql
问题:表t有三个字段,student(学生姓名),class(科目),score(成绩),需要找到总成绩最高的学生的姓名(可能有多个)
一开始的做法:
select student,sum(score) from t group by student having sum(score) =
(select temp.s from
(select student,sum(score) s from t group by student order by s desc limit 1) as temp)
思路是先分组求和,然后对和最大的值取出来,当分组求和的列表的一个值等于最大的值,则取出这条记 ...
在eclipse上远程调试tomcat的程序,需要注意:
1.启动是通过catalina.sh jpda start 端口默认8000
2.如果想要改端口,需要export JPDA_ADDRESS=10000;
SELECT tablename FROM pg_tables
WHERE tablename NOT LIKE 'pg%'
AND tablename NOT LIKE 'sql_%'
ORDER BY tablename;
查询表t_appointment_apply表的字段信息
SELECT a.attnum,a.attname AS field,t.typname AS type,a.attlen AS length,a
.atttypmod AS lengthvar,a.attnotnull AS notnull from pg_cl ...
比如:有两个版本的tomcat,一个5.*,一个6.*,此时由于两个工程分别部署在两个版本的tomcat下,需要同时启动两个tomcat,以下是方法:
1.特别要注意:不要设置CATALINA_HOME
2.分别修改安装目录下的conf子目录中的server.xml文件:
a.修改http访问端口(默认为8080端口,我习惯在安装的时候就改成别的端口号,比如5.*改成8081,6.*改成8086),将8080修改为tomcat不在使用的端口号。此处所设的端口号即是以后访问web时所用的端口号。
b.修改其中一个tomcat的Shutdown端口(在server.xml中,默认为 ...