`
文章列表
需要导入jquery.tools.min.js库和jQuery库 $(function() { // setup ul.tabs to work as tabs for each div directly under div.panes $("ul.tabs").tabs("div.panes > div", { initialIndex: 1 });//设置 }); div+css:  <div class="box"> <!-- the tabs --> < ...
 原因: classpath是隐藏文件,不能编辑    解决:  
double price= NumberUtils.toDouble(product.getPrice()); product.setPrice(new DecimalFormat("0.00").format(price));  

java application.xml

    博客分类:
  • java
main函数测试时,可以用下面的SrpingUtils public class SpringUtils { static ApplicationContext context = null; static { context = new ClassPathXmlApplicationContext("applicationContext.xml"); } public static <T> T getBean(Class<T> type) { return context.getBean(type); } } ...
<!DOCTYPE>去掉
在学习AJAX,用jQuery调用load()方法加载另外html文件时,出现了错误Failed to load resource: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'null' is therefore not allowed access.XMLHttpRequest cannot load file:///E:/code/JQuery/AJAX/a.html.   然后google了一下,在stackoverflow上看到以下解释:
介绍一个非常有用的mysql启动参数—— --skip-grant-tables。 顾名思义,就是在启动mysql时不启动grant-tables,授权表。有什么用呢?当然是忘记管理员密码后有用。     操作方法:     1、杀掉原来进行着的mysql:        rcmysqld stop        或者:        service mysqld stop        或者:        kill -TERM mysqld     2、以命令行参数启动mysql:        /usr/bin/mysqld_safe --skip-grant-tabl ...

linux定时任务

************************************************************************************ cron是一个linux下的定时执行工具,可以在无需人工干预的情况下运行作业。由于Cron 是Linux的内置服务,但它不自动起来,可以用以下的方法启动、关闭这个服务:   /sbin/service crond start //启动服务/sbin/service crond stop //关闭服务/sbin/service crond restart //重启服务/sbin/service crond reload / ...
1.如果本来已经安装了apache,mysql需要先关闭,并设置不启动 service httpd stop service mysqld stop chkconfig httpd off chkconfig mysqld off 2.解压缩 

linux grep

含有Exception前10行 grep -B10 'Exception'  /app/apache-tomcat-7.0.47/logs/catalina.out |more   含有Exception后10行 grep -A10 'Exception'  /app/apache-tomcat-7.0.47/logs/catalina.out |more
<listener>         <listener-class>org.springframework.web.util.IntrospectorCleanupListener</listener-class>   </listener>     这是Introspector 缓存清除监听器         Spring 提供了一个名为 org.springframework.web.util.IntrospectorCleanupListener 的监听器。它主要负责处理由 JavaBean Introspector 功能而引起 ...
<listener>         <listener-class>org.springframework.web.util.IntrospectorCleanupListener</listener-class>   </listener>     这是Introspector 缓存清除监听器         Spring 提供了一个名为 org.springframework.web.util.IntrospectorCleanupListener 的监听器。它主要负责处理由 JavaBean Introspector 功能而引起 ...
直接上代码: 服务端test.jsp String result=request.getParameter("data")==null?"null":request.getParameter("data"); String callback = request.getParameter("jsonpCallback")+"([{\"results\":"+result+"}])"; response.setHeader("Pragma&q ...
CommonsMultipartResolver multipartResolver = new CommonsMultipartResolver( request.getSession().getServletContext()); // 检查form是否有enctype="multipart/form-data" if (multipartResolver.isMultipart(request)) { MultipartHttpServletRequest multiRequest = (MultipartHttpServletReq ...
1. 机制:spring mvc的入口是servlet,而struts2是filter,这样就导致了二者的机制不同。 2. 性能:spring会稍微比struts快。spring mvc是基于方法的设计,而sturts是基于类,每次发一次请求都会实例一个action,每个action都会被注入属性,而spring基于方法,粒度更细,但要小心把握像在servlet控制数据一样。spring3 mvc是方法级别的拦截,拦截到方法后根据参数上的注解,把request数据注入进去,在spring3 mvc中,一个方法对应一个request上下文。而struts2框架是类级别的拦截,每次来了请求就创建一个 ...
Global site tag (gtag.js) - Google Analytics