- 浏览: 60677 次
- 性别:
- 来自: 威海
最新评论
文章列表
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
<td><fmt:formatDate value="${secondStaData.collectTime}" pattern="yyyy-MM-dd hh:mm:ss" type="date" dateStyle="long" /></td>
安装Eclipse IDE for Java EE Developers
解压eclipse-jee-galileo-win32.zip
打开eclipse.exe,配置eclipse
设置工作区编码设为utf-8;
Window->preference
导入本地的java
给eclipse安装插件
进入安装插件目录
2.3.1先安装subeclipse插件就是svn
svn - http://subclipse.tigris.org/upda ...
<script type="text/javascript">
$(function (){
$("#d4312").attr("disabled","disabled");
});
function selectAll(){
if($("#allCk").attr("checked")){
$("td input[type='checkbox']").attr("checked",true) ...
@RequestMapping("/listSetPlanAll.htm")
public ModelAndView listSetPlanAll(@RequestParam("userId")Integer userId,Integer pageNo,
@ModelAttribute("setPlan")SetPlan setPlan,@ModelAttribute("employee") Employee employee) throws BusinessException{
ModelAnd ...
分页用于从数据库搜索出符合条件的数据,分页显示
BO
public class exampleBOImpl implements exampleBO {
private ExampleDAO exampleDAO;
//取出所有符合条件的数据
@Override
public List<UserInfo> selectExampleListByPage(Example example, PageBean pb)
throws BusinessException {
return this.exampleDAO.selectE ...
一、什么是JAVA事务
通常的观念认为,事务仅与数据库相关。
事务必须服从ISO/IEC所制定的ACID原则。ACID是原子性(atomicity)、一致性(consistency)、隔离性
(isolation)和持久性(durabilit ...
这些都代表了Java中的集合,这里主要从其元素是否有序,是否可重复来进行区别记忆,以便恰当地使用,当然还存在同步方面的差异,见上一篇相关文章。
有序否
允许元素重复否
Collection