- 浏览: 280113 次
- 性别:
最新评论
文章列表
jsp 静态引入<%@ include %> 动态引入<jsp:include> 区别
http://blog.csdn.net/miaoyitao/article/details/51508141
01 在eclipse中查看一个类及其父类中的所有方法和属性
http://blog.csdn.net/zhaotengfei36520/article/details/49780707
01 用Maven插件生成Mybatis代码
http://blog.csdn.net/gufeng672/article/details/27196347
02 generatorConfig.xml文件配置
http://stackoverflow.com/questions/32806225/mybatis-cannot-generator-using-oracle-database
03 MyBatis Generator官网
http://www.mybatis.org/generator/running/runningWithMaven.html
04 我的问题:classPa ...
Java – Static Class, Block, Methods and Variables
http://beginnersbook.com/2013/04/java-static-class-block-methods-variables/
package strategy;
public class Example {
public Double calRecharge(Double charge, RechargeTypeEnum type) {
if (type.equals(RechargeTypeEnum.E_BANK)) {
return charge * 0.85;
} else if (type.equals(RechargeTypeEnum.BUSI_ACCOUNTS)) {
return charge * 0.90;
} else if (type.equals(R ...
设计模式 ( 十八 ) 策略模式Strategy(对象行为型)
http://blog.csdn.net/hguisu/article/details/7558249/
JAVA设计模式:策略模式(你还在使用IF ELSE IF吗?)
http://blog.sina.cn/dpool/blog/s/blog_4b81125f0101m7va.html
<?php
/**
* 策略模式
* 定义一系列的算 ...
01 Shiro 权限框架使用总结
http://guoyiqi.iteye.com/blog/1198685
02 Shiro官网
http://shiro.apache.org/reference.html
03 Core Concepts(Shiro相关基本概念)
https://www.infoq.com/articles/apache-shiro
04 第十一章 缓存机制——《跟我学Shiro》
http://jinnianshilongnian.iteye.com/blog/2029217
05 《跟我学Shiro源码》
https://github.com/zhangkai ...
01 ThinkPHP学习(二)理清ThinkPHP的目录结构及访问规则,创建第一个控制器
http://blog.csdn.net/testcs_dn/article/details/21036345
HTTP:
<?php
$ch = curl_init("http://localhost:9000/...........");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$output = curl_exec($ch);
curl_close($ch);
echo "$output";
?>
HTTPS:
<?php
$url = "https://...........";
$ch = curl_init(); ...
01 Spring Boot SLF4J Logging example
https://www.mkyong.com/spring-boot/spring-boot-slf4j-logging-example/
02 Create a temporary file
http://www.rgagnon.com/javadetails/java-0484.html
下载和配置php
下载php:http://windows.php.net/download/ php-5.4.16-Win32-VC9-x86.zip
下载apache: http://httpd.apache.org/download.cgi#apache22
一、首先将php5内的所有dll文件(包括ext文件夹内的dll文件)拷贝至Windows系统的system32文件夹下,如C:WINDOWS\s ...
为工作方便,周末自学下PHP。以下学习轨迹:
01 How to run PHP Program for the first time? use XAMPP.
http://www.fayazmiraz.com/how-to-run-your-first-php-code/
02 A step-by-step and how-to install and use Eclipse PHP development tool (PDT) on Windows machines
http://www.javaguicodexample.com/phpdevelomenttoolpdt.html
0 ...
遇到该问题一般是配置文件问题,但是在dos上却没有打出具体错误原因。
首先让dos打出具体错误吧:
01 想让问题重现,首先是删除服务重新装:
sc delete Apache2.2
[SC] DeleteService 成功
02 然后重装就会有具体报错,然后解决错误:
httpd -k install
03 迭代以上2步,直到没有具体报错了,于是可以启动服务了
net start Apache2.2
01 redis实现分布式session共享
http://www.jianshu.com/p/1361d578035d
02 Tomcat中session的管理机制
http://www.css88.com/jqapi-1.9/
03 关于tomcat和sessionCookieName和SESSION_PARAMETER_NAME以及disableURLRewriting参数原理和使用
http://www.cnblogs.com/interdrp/p/4935546.html