随笔分类 -  j2ee

上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 31 下一页
j2ee
摘要:今日排班 历史排班function LoadPage(obj) { $.get($(obj).attr('data-url') + "?n=" + Math.ran... 阅读全文
posted @ 2015-10-12 09:40 星辰之力 阅读(369) 评论(0) 推荐(0) 编辑
摘要:本文对比了同一Spring MVC工程中相同页面(一个订阅表单)分别采用Thymeleaf和JSP(包括JSP、JSTL、Spring tag lib)两种方式的实现。本文的所有代码来自一个可运行的应用。你可以从文档页面下载该应用程序的源代码。Common requirements顾客通过一个表单添... 阅读全文
posted @ 2015-10-12 09:33 星辰之力 阅读(3909) 评论(2) 推荐(0) 编辑
摘要:A、Spring标签库 Web项目若使用Spring Web MVC并使用JSP作为表现的话。从Spring2.0版本开始提供一套标签库可供使用。使用标签库无非是易于开发,维护之类云云。这里就不阐述了。我们还是更关注spring有哪些标签库和如何使用。B、spring.tld标签库spring.tl... 阅读全文
posted @ 2015-10-12 09:11 星辰之力 阅读(21443) 评论(0) 推荐(1) 编辑
摘要:1、直接Redirect后加 Controller/Action Response.Redirect("/User/Edit"); // return Redirect("/User/Edit"); return RedirectToAction("about","Home... 阅读全文
posted @ 2015-10-12 09:05 星辰之力 阅读(377) 评论(0) 推荐(1) 编辑
摘要:package com.kite.controller;import java.util.HashMap;import java.util.Map;import javax.validation.Valid;import org.springframework.stereotype.Controll... 阅读全文
posted @ 2015-10-10 17:06 星辰之力 阅读(366) 评论(0) 推荐(0) 编辑
摘要:springmvc请求接收参数的几种方法 阅读全文
posted @ 2015-10-10 16:53 星辰之力 阅读(156) 评论(0) 推荐(0) 编辑
摘要:我们平时用eclipse开发jsp页面时智能提示效果不太理想,今天用了两个小时发现了eclipse也可以像Visual Studio 2008那样完全智能提示HTML/JS/CSS代码,使用eclipse自带的插件,无需另外安装插件,具体步骤如下1.打开eclipse→Windows→Prefere... 阅读全文
posted @ 2015-10-10 16:36 星辰之力 阅读(271) 评论(0) 推荐(0) 编辑
摘要:实验是在前一篇文章的项目上做的;数据写到页面后台往前台传数据TestController添加/** * 方法的返回值采用ModelAndView, new ModelAndView("index", map);, * 相当于把结果数据放到request里面 * @return * @... 阅读全文
posted @ 2015-10-10 16:28 星辰之力 阅读(1497) 评论(0) 推荐(0) 编辑
摘要:value的uri值为以下三类:A) 可以指定为普通的具体值;B) 可以指定为含有某变量的一类值(URI Template Patterns with Path Variables);@RequestMapping(value="/owners/{ownerId}", method=RequestM... 阅读全文
posted @ 2015-10-10 16:17 星辰之力 阅读(1810) 评论(0) 推荐(0) 编辑
摘要:web-inf目录是不对外开放的,外部没办法直接访问到。所有只能通过映射来访问,比如映射为一个action或者servlet通过服务器端跳转来访问到具体的页面。这样可以限制访问,提高安全性。 1、把页面资源文件只能放在webroot下面,如 CSS,JS,image等.放在WEB-INF下引用不... 阅读全文
posted @ 2015-10-10 16:08 星辰之力 阅读(277) 评论(0) 推荐(0) 编辑
摘要:在springmvc中的controller所对应的函数中,如果需要从*.jsp页面中获取数据,可以自行在函数括号中写,springmvc会自动封装传过来的。spring-mvc.xml Controller.java 两种形式都可以,但是第二种,jsp页面中的参数是personL... 阅读全文
posted @ 2015-10-10 13:37 星辰之力 阅读(469) 评论(0) 推荐(0) 编辑
摘要:DiscHd ks = DiscHdService.getDiscHdByID(code); model.addAttribute("ks", ks);如果传的是对象,则jsp页面直接用"${ks.DValue}"得到值。List discDets=discDetService.getDiscDe... 阅读全文
posted @ 2015-10-10 13:25 星辰之力 阅读(1105) 评论(0) 推荐(0) 编辑
摘要:一、request.getParameter() 和request.getAttribute() 区别(1)request.getParameter()取得是通过容器的实现来取得通过类似post,get等方式传入的数据,request.setAttribute()和getAttribute()只是在... 阅读全文
posted @ 2015-10-10 10:29 星辰之力 阅读(45677) 评论(0) 推荐(3) 编辑
摘要:Ajax注册表单用户名实时验证 阅读全文
posted @ 2015-10-10 09:56 星辰之力 阅读(247) 评论(0) 推荐(0) 编辑
摘要:AJAX——核心XMLHttpRequest对象 阅读全文
posted @ 2015-10-10 09:06 星辰之力 阅读(104) 评论(0) 推荐(0) 编辑
摘要:RequestAttributes ra = RequestContextHolder.getRequestAttributes(); HttpServletRequest request = ((ServletRequestAttributes)ra).getRequest();... 阅读全文
posted @ 2015-10-09 20:09 星辰之力 阅读(846) 评论(0) 推荐(0) 编辑
摘要:hasClass(class)检查当前的元素是否含有某个特定的类,如果有,则返回true。参数:class:用于匹配的类名。----------------------------------------------------------------------------------------... 阅读全文
posted @ 2015-10-09 19:04 星辰之力 阅读(1321) 评论(0) 推荐(0) 编辑
摘要:开发一个适合Ajax+JSON+jQuery环境使用的多功能页码栏——jPagerBar-1.1.1 阅读全文
posted @ 2015-10-09 16:23 星辰之力 阅读(108) 评论(0) 推荐(0) 编辑
摘要:jQuery中使用Ajax获取JSON格式数据 阅读全文
posted @ 2015-10-09 16:22 星辰之力 阅读(295) 评论(0) 推荐(0) 编辑
摘要:有这么一个JSON数组,需求是只需要输出每个数组里面的某个值,不需要全部输出来。var data = [{ "MachineID":"171914", "Cost":"13,642.41", "Currency":"PHP"},{ "MachineID":"172233", ... 阅读全文
posted @ 2015-10-09 10:38 星辰之力 阅读(860) 评论(0) 推荐(0) 编辑

上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 31 下一页