摘要:
①. 正常加入 Struts2②. 在 Spring 的 IOC 容器中配置 Struts2 的 Action注意: 在 IOC 容器中配置 Struts2 的 Action 时, 需要配置 scope 属性, 其值必须为 prototype ③. 配置 Struts2 的配置文件: action... 阅读全文
2015年12月11日
2015年12月9日
摘要:
1 在配置文件中加入: 2 在方法名上添加注解:@Transactional( propagation=Propagation.REQUIRES_NEW, isolation=Isolation.READ_COMMITTED, readOnly=false, timeout=3 ) //1.使用 p 阅读全文
摘要:
1 把一个类声明为一个切面:①需要把该类放入到IOC中,②再声明为一个切面(@Aspect @Component)@Order(1):指定顺序2 在配置文件中添加如下配置:package com.atguigu.aop;import java.util.Arrays;import org.aspec... 阅读全文
2015年11月23日
摘要:
lhgdialog主调函数参数说明:主调函数: J.dialog.get( id, options );参数说明:1. id :窗口 id 号,必写项,不能省略 。每个窗口的 id 必须是唯一的不能重复。2. options : json 格式的 key /value 对象参数,它包括以下选项,都是... 阅读全文
2015年11月22日
摘要:
例子:interface Fruit{ public void eat();}class Apple interface Fruit{ public void eat(){ System.out.println("**吃苹果"); }};class Orange in... 阅读全文
2015年11月20日
摘要:
public class BatchDownloadServlet extends HttpServlet { public void doGet(HttpServletRequest request, HttpServletResponse response) thro... 阅读全文
摘要:
public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { String filename =... 阅读全文
摘要:
public class SmartUploadServlet extends HttpServlet { public void doGet(HttpServletRequest request, HttpServletResponse response) th... 阅读全文
摘要:
单例模式: 应用场合:有些对象只需要一个就足够了,如皇帝等; 作用:保证整个应用程序中,某个实例有且只有一个; 类型:饿汉式模式,懒汉式模式; 步骤:(饿汉模式)1将构造方式私有化;不允许外部直接创建对象; 2创建类的唯一实例(private static类型的); 3提供一个用于获取实例的方法(p 阅读全文