- 浏览: 170907 次
- 性别:
- 来自: 北京
最新评论
-
龙碧云:
写的好
struts2 action 属性不写 get set -
异彩飞天:
请问连接字符串怎么写?
C#MysqlHelper -
winerdaxian:
...
ext form load -
zhanglufei2010:
问一下 为什么要把自己定义的放在最后面啊?
struts2 interceptor-stack -
oritenson:
很好!
S2SH所需jar包
文章列表
<Host name="www.hello.com" appBase="D:/Inetpub/web/hello"
unpackWARs="true" autoDeploy="true"
xmlValidation="false" xmlNamespaceAware="false">
<Alias>beibeiwan.com</Alias>
...
http://callan.iteye.com/blog/736863
http://joerong666.iteye.com/blog/599891
http://leaya00.iteye.com/blog/728200
http://www.iteye.com/topic/434443
public File rename(File file) {
String body="";
String ext="";
Date date = new Date();
int pot=file.getName().lastIndexOf(".");
if(pot!=-1){
body= date.getTime() +"";
ext=file.getName().substring(pot);
...
Model model,HttpServletRequest request, ModelMap map声明变量
request.getSession().setAttribute("test", "haiwei2Session");
request.setAttribute("test", "haiwei1request");
map.addAttribute("test", "haiweiModelMap");
model.addAttribute(" ...
<div class=" suffix_5 grid_14 prefix_5">
imp userid=system/manager fromuser=username1 touser=username2 ignore=y file=expfile.dmp full=y
内连接:进行连接的两个表对应的相匹配的字段完全相同的连接。
外连接又分为左外连接和右外连接。
左连接即LEFT OUTER JOIN:
两个表进行左连接时会返回左边表中的所有的行和右边表中与之相匹配的列值没有相匹配的用空值代替。
右连接即RIGHT OUTER JOIN:
两个表进行右连接时会返回右边表中的所有的行和左边表中与之相匹配的列值没有相匹配的用空值代替。
你是要弄清楚区别在什么地方还是单纯想要文字说明
文字说明的楼上说了一大堆了,不说了。
弄个例题,直观一点。两个表:
--表stu
id name
1, Jack
2, Tom
3, Kity
...
extjs tree 右键 window
- 博客分类:
- 我的收藏夹
文章不错学习extjs tree右键 window
转载一篇文章,学习extjs tree
http://www.iteye.com/topic/207799
<package name="struts2" extends="json-default" namespace="/">
<interceptors>
<!-- 定义权限拦截器 -->
<interceptor name="permission"
class="com.yinlu.rm.web.PermissionInterceptor" />
<!-- 定义拦截器栈,所谓拦截器栈,是指由一个或多个 ...
下载hibernate-distribution-3.3.2.GA-dist.zip,网址http://sourceforge.net/projects/hibernate/files/,解压得hibernate-distribution-3.3.2.GA文件夹。
下载hibernate-annotations-3.3.0.GA.zip,网址http://sourceforge.net/projects/hibernate/files/hibernate-annotations/,解压得hibernate-annotations-3.3.0.GA文件夹。
下载slf4j-1.5.8. ...
package com.yinlu.cms.action;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.w ...