- 浏览: 12464 次
- 性别:
- 来自: 广州
最新评论
文章列表
1.营销活动概念
营销主体
平台、商家和第三方,是发起营销活动并承担成本,最终与平台进行结算的主体
营销对象
狭义上的营销对象就是指平台的消费者,但从营销角度来说,是指有可能产生交易并最终成交的所有潜在对象
营销载体
进行营销活动的系统,包括各个展示的端以及外部调用的来源,比如pc端,andord端,ios端,还有可能是其他的app来源
营销限制
针对商家和个人进行条件限制,针对特定的营销活动中营销范围的进行,例如某个商家不能金额不能超过N元,商品数量不能超过N个,还例如某个用户不能参加N次,用户订单数量不能超过M个等等
...
1.下载hadoop-2.6.0.tar.gz,进入/usr,然后解压hadoop的jar包,将解压后的目录名为hadoop,创建临时文件目录tmp
(1)cd /usr
(2)tar zxvf hadoop-2.6.0.tar.gz
(3)mv hadoop-2.6.0 hadoop
(4)mkdir tmp
(5)vi /etc/profile
# Set hadoop environment
export HADOOP_HOME=/usr/hadoop
export PATH=$PATH:$HADOOP_HOME/bin
(6)配置h ...
1.官网下载redis-3.0.3.tar.gz
2.直接安装出错:
make[2]: cc: Command not found
没安装gcc,
解决:
yum install gcc-c++
3.再执行make命令:
zmalloc.h:50:31: error: jemalloc/jemalloc.h: No such file or directory
zmalloc.h:55:2: error: #error "Newer version of jemalloc required"
说关于分配器allocator, 如果有MAL ...
连接操作相关的命令
quit:关闭连接(connection)
auth:简单密码认证
持久化
save:将数据同步保存到磁盘
bgsave:将数据异步保存到磁盘
lastsave:返回上次成功将数据保存到磁盘的Unix时戳
shundown:将数据同步保存到磁盘,然后关闭服务
远程服务控制
info:提供服务器的信息和统计
monitor:实时转储收到的请求
slaveof:改变复制策略设置
config:在运行时配置Redis服务器
对value操作的命令
1.DozerBeanMapper的map方法
public class BeanMapper {
private static DozerBeanMapper dozer = new DozerBeanMapper();
public static <T> T map(Object source, Class<T> destinationClass) {
return dozer.map(source, destinationClass);
}
public ...
1、配置:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
xmlns:mon ...
1.基于Redis,使用开源解决方案RedisSessionManager解决多Tomcat实例的Session共享问题。
2.复制RedisSessionManager相关Jar包到:<Tomcat安装目录>/lib/下。
需要Tomcat配置文件:<Tomcat安装目录>/conf/context.xml
<?xml version='1.0' encoding='utf-8'?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contri ...
1、jquery 获取<select> 标签选中值的用法,eg:
IE8:$("#test option:selected").val(),不能用$("#test ").val()
chrome:$("#test option:selected").val()或者$("#test").val()均可。
2、具有 true 和 false 两个属性的属性,如 checked, selected 或者 disabled 使用prop(),其他的使用 attr(),例如:$(“# ...
1.调用的工具类:
/**
工具类
**/
public class InternationalizationUtil {
private static ApplicationContext ctx = new ClassPathXmlApplicationContext("classpath:applicationContext-i18n.xml");
private static MessageSourceAccessor messageSourceAccessor;
static {
MessageSourc ...
1.添加注解方法
public @interface TestAnnotation {
......
}
2、继承HandlerMethodArgumentResolver接口,
public class TestArgumentResolver implements HandlerMethodArgumentResolver {
@Override
public boolean supportsParameter(MethodParameter parameter) {
return parameter.hasParameterAnnotation( TestAnnotat ...
1.Apache的conf/httpd.conf尾部添加:
# 加载 mod_jk 模块
LoadModule jk_module modules/mod_jk.so
#
# Configure mod_jk
#
JkWorkersFile conf/workers.properties
JkMountFile conf/uriworkermap.properties
JkLogFile logs/mod_jk.log
JkLogLevel warn
2.uriworkermap.properties内容:
/*=lbworker
/jkstat ...
了解mina,nio是不可缺少的。
1.nio的基本概念:
(1)Buffer:Buffer 类是一个抽象类。有7个基本的数据类型的子类,包括ByteBuffer、CharBuffer、DoubleBuffer、FloatBuffer、IntBuffer、LongBuffer 和ShortBuffer。可以将Buffer对象看到数据容器。其中,mina中的IoBuffer就是ByteBuffer类的一种改进。
(2)Channel:重点理解SelectableChannel以及继承于它的ServerSockectChannel及SockectChannel,各类Cha ...
1.buffer包结构:
2.核心类:IoBuffer
A byte buffer used by MINA applications.
This is a replacement for ByteBuffer. Please refer to ByteBuffer documentation for preliminary usage. MINA does not use NIO ByteBuffer directly for two reasons:
It doesn't provide useful getters and putters such as fill, g ...
1.伪装身份(Spoofing identity),对应安全认证
2.篡改数据(Tampering with data),对应数据完整性
3.抵赖(Repudiation),对应不可抵赖性
4.信息泄露(Information disclosure),对应机密性
5.拒绝服务(Denial of service),对应可用性
6.提升权限(Elevation of privilege),对应授权
参考:http://msdn.microsoft.com/en-us/library/ee823878(v=cs.20).aspx