- 浏览: 590924 次
- 性别:
- 来自: 深圳
最新评论
-
明明如月:
这个方法不错
解决Failed to execute goal org.apache.maven.plugins -
srhlwdamon:
可是我的为什么解决不了。。。。。。。。。!!
解决Failed to execute goal org.apache.maven.plugins -
di1984HIT:
写的不错。
Memcached 在window下部署和测试示例 -
只为学英语:
正解,十分感谢
解决Failed to execute goal org.apache.maven.plugins -
落雪封:
谢谢,解决了,少导入jar包了
Spring MVC 的json问题(406 Not Acceptable)
文章列表
一.查找 LogFactory 的顺序:
1.从系统属性中查找键为 org.apache.commons.logging.LogFactory 的值作为 LogFactory 的实现类
2.使用 JDK1.3 jar 的 Service Provider Interface(SPI) 类发现机制,从配置文件 META-INF/services/org.apache.commons.logging.LogFactory 的的第一行读取 LogFactory 的实现类名。
这个 META-INF/services/org.apache.commons.logging.LogFactory 文件 ...
<script type="text/javascript">
<!--
//遍历数组
var dayArray=[1,2,3];
for(var day in dayArray){
document.write(dayArray[day]);
}
//定义对象,设置属性,访问属性
function University(){
}
var university=new University();
university.name="云南省"
university.city="昆明市"
...
1.问题1-做完项目才做文档
2.前台太多,功能不足
3.项目业务了解不多,视野不开阔,在功能实现上有差距
4.为了实现功能和idea,错过早餐,错过午睡时有发生
5.记得答辩ppt
6.web项目演示不能远程,不能暴露源代码
7.需求分析很重要,当你不明白你要干啥,你能做出啥
8.ER图还是不太会画
9.数据库建模能力有待提高,是否应该使用联合主键?在建立数据库表时还要考虑查询的方便性
10.先需求分析->ER图->数据库建模->写出核心sql->java代码->前台简单展示->js框架
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset ...
<input autocomplete='off' name='userName' type='text'>
1.本身盒子的margin都是0,padding都是0,应该是吧
2.发现:外div固定死,内div通过margin,padding移动它的内容
3.每个div最好都是设置好宽和高,每条样式表你要清楚它到底是干嘛的才走下一步
4.div内容垂直居中:
height: 40px;
line-height:40px;
#card #c_header #schedule_id {
text-align: center;
height: 40px;
line-height:40px;
/* vertical-align:middle;*/
}
/**
* 根据车次和座位类型获得对应的已订座位数
*
* @param id
* @return
*/
public Long countOrderedSeat(int scheduleID, int seatType) {
// count(Type)返回的是Long类型,无奈
Long retVal = null;
String sql = " select count(Type) from tb_train_seat where Type=? "
...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset ...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset ...
public static void main(String[] args) throws IOException {
//Properties 线程安全
Properties d = new Properties();
d.setProperty("age", "16");
d.setProperty("school", "hr");
Properties p = new Properties(d);// 默认 Properties
p.load(Temp.class.getCl ...
public static int string2Int(String source) {
if(source==null||source.trim().length()==0){
throw new RuntimeException("当string2Int时出错,source="+source);
}
return Integer.parseInt(source);
}
/*有问题:*/
select AutoID from tb_train_station where Name like '%?%')
/*OK:*/
select AutoID from tb_train_station where Name like concat('%',?,'%'))
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset ...
import java.sql.*;
import java.lang.reflect.*;
import java.util.*;
import java.io.*;
/**
* 配合动态代理来学习
* 2010-12-13
*/
public class SimpleConnetionPool {
private static LinkedList m_notUsedConnection = new LinkedList();
private static HashSet m_usedUsedConnection = new HashSet();
p ...