`
namezhou
  • 浏览: 158589 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论
文章列表
spring集成hibernate1.配置datasource的bean<!-- 配置数据源的bean --> <bean id="datasrc" class="org.springframework.jdbc.datasource.DriverManagerDataSource"> <property name="driverClassName" value="com.mysql.jdbc.Driver"></property> <property ...
JdbcTemplate没有内置事务机制 可以使用Spring的AOP代理机制来实现 具体实现:配置文件 <!-- 数据源对象 --> <bean id="datasrc" class="org.springframework.jdbc.datasource.DriverManagerDataSource"> <property name="driverClassName" value="com.mysql.jdbc.Driver"></property> ...
spring 内置的jdbc支持可以简化jdbc的操作 User 实体类 public class User { private int userid; private String username; private String password;   UserDao接口 public interface UserDao { List findAll(); User getUserById(int id); boolean addUser(User user); boolean deleteUser(User user); boolean updat ...
注入:为对象的属性赋值 1.基本数据类型的set注入 public class User { private int userid; private String username; private String password; }  为此类添加getter和setter配置文件: <bean id="user" class="com.dowebber.inject.User"> <property name="userid" value="1"></pro ...
当对象属性中包含特定的自定义类型的引用时,可以配置spring自动在配置文件中寻找合适的bean自动添加ref 设置方式:在beans标签中,添加default-autowire属性 常用的取值:byType  选择找到的第一个类型与引用类型一直的bean时,自动装载它byName 选择找到的第一个id与引用对象的name相同的bean时,自动装载它 bean的作用域:设置多次获取对象时的策略singleton 单例模式prototype 多实例模式设置方法:bean 标签的scope属性
使用Spring自动生成代理类,spring利用的是动态代理机制接口 public interface UserDao { void addUser(); void deleteUser(); }  两个实现: public class UserDaoMySqlImpl implements UserDao { @Override public void addUser() { System.out.println("UserDaoMySqlImpl.addUser()"); } @Override public void d ...
使用Spring自动生成代理类,spring利用的是动态代理机制接口 public interface UserDao { void addUser(); void deleteUser(); }  两个实现: public class UserDaoMySqlImpl implements UserDao { @Override public void addUser() { System.out.println("UserDaoMySqlImpl.addUser()"); } @Override public void d ...
下面先说说window.showModalDialog的基本用法 showModalDialog() (IE 4+ 支持) showModelessDialog() (IE 5+ 支持) window.showModalDialog()方法用来创建一个显示HTML内容的模态对话框。 window.showModelessDialog()方法用来创建一个显示HTML内容的非模态对话框。 使用方法: vReturnValue = window.showModalDialog(sURL [, vArguments] [,sFeatures]) vReturnValue = window.showM ...
Global site tag (gtag.js) - Google Analytics