- 浏览: 563904 次
- 性别:
- 来自: 武汉
文章分类
最新评论
-
bo_hai:
快速排序:https://bo-hai.iteye.com/b ...
插入排序、选择排序、冒泡排序 简单实例 -
bo_hai:
参考:https://bo-hai.iteye.com/blo ...
插入排序、选择排序、冒泡排序 简单实例 -
bo_hai:
JDK1.8后,解决问题的办法就简单啦:List<Int ...
List 中去除 null 方法讨论 -
bo_hai:
上述两种办法都不是最好的单例模式。
安全发布单例模式 -
bo_hai:
我来评论一下。
MySql 删除重复数据的方法
applicationContent.xml 内容样例如下:
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p" xmlns:context="http://www.springframework.org/schema/context" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd"> <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource" destroy-method="close"> <property name="driverClass" value="com.mysql.jdbc.Driver"/> <property name="jdbcUrl" value="jdbc:mysql://localhost:3306/shopping?useUnicode=true&characterEncoding=UTF-8"/> <property name="user" value="chinese"/> <property name="password" value="a123"/> <property name="maxPoolSize" value="10"/> <property name="minPoolSize" value="1"/> <property name="initialPoolSize" value="2"/> <property name="autoCommitOnClose" value="false"/> <property name="maxIdleTime" value="60"/> <property name="acquireIncrement" value="5"/> <property name="idleConnectionTestPeriod" value="60"/> </bean> <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"> <property name="dataSource"> <ref bean="dataSource" /> </property> <property name="hibernateProperties"> <props> <prop key="hibernate.dialect"> org.hibernate.dialect.MySQL5Dialect </prop> <prop key="hibernate.show_sql">true</prop> <prop key="hibernate.format_sql">true</prop> <prop key="hibernate.use_sql_comments">false</prop> <!-- 自动生成数据库表 <prop key="hibernate.hbm2ddl.auto">update</prop> --> </props> </property> <property name="mappingResources"> <list> <value>com/shopping/pojo/Resource_goods.hbm.xml</value> <value>com/shopping/pojo/Good_user.hbm.xml</value> <value>com/shopping/pojo/Goods_order.hbm.xml</value> <value>com/shopping/pojo/Datiel_order.hbm.xml</value> <value>com/shopping/pojo/Good_car.hbm.xml</value> <value>com/shopping/pojo/Goods_comment.hbm.xml</value> </list> </property> </bean> <bean id="GoodsUserDAO" class="com.shopping.dao.GoodUserDAO" scope="singleton"> <property name="sessionFactory" ref="sessionFactory"/> </bean> <bean id="GoodUserBIZ" class="com.shopping.biz.GoodUserBIZ" scope="prototype"> <property name="goodUserDao" ref="GoodsUserDAO"/> </bean> <bean id="checkLoginBean" class="com.shopping.action.LoginAction" scope="prototype"> <property name="goodUserBiz" ref="GoodUserBIZ"/> </bean> <bean id="GoodsDAO" class="com.shopping.dao.GoodsDAO" scope="singleton"> <property name="sessionFactory" ref="sessionFactory"/> </bean> <bean id="GoodsBIZ" class="com.shopping.biz.GoodsBIZ" scope="prototype"> <property name="goodsDAO" ref="GoodsDAO"/> </bean> <bean id="showGoodsBean" class="com.shopping.action.GoodsAction" scope="prototype"> <property name="goodsBIZ" ref="GoodsBIZ"/> </bean> <bean id="CarDAO" class="com.shopping.dao.CarDAO" scope="singleton"> <property name="sessionFactory" ref="sessionFactory"/> </bean> <bean id="CarBIZ" class="com.shopping.biz.CarBIZ" scope="prototype"> <property name="carDao" ref="CarDAO"/> <property name="goodsDao" ref="GoodsDAO"/> <property name="userDao" ref="GoodsUserDAO"/> </bean> <bean id="CarBean" class="com.shopping.action.CarAction" scope="prototype"> <property name="carBiz" ref="CarBIZ"/> </bean> <bean id="orderDAOBean" class="com.shopping.dao.OrderDAO" scope="prototype"> <property name="sessionFactory" ref="sessionFactory"/> </bean> <bean id="orderBIZBean" class="com.shopping.biz.OrderBIZ" scope="prototype"> <property name="orderDao" ref="orderDAOBean"/> <property name="userDao" ref="GoodsUserDAO"/> <property name="carDao" ref="CarDAO"/> <property name="goodsDao" ref="GoodsDAO"/> </bean> <bean id="orderActionBean" class="com.shopping.action.OrderAction" scope="prototype"> <property name="orderBiz" ref="orderBIZBean"/> </bean> <bean id="CommentDaoBean" class="com.shopping.dao.CommentDAO" scope="singleton"> <property name="sessionFactory" ref="sessionFactory"/> </bean> <bean id="CommentBizBean" class="com.shopping.biz.CommentBIZ" scope="prototype"> <property name="commentDao" ref="CommentDaoBean"/> <property name="goodsDao" ref="GoodsDAO"/> </bean> <bean id="CommentActionBean" class="com.shopping.action.CommentAction" scope="prototype"> <property name="commBiz" ref="CommentBizBean"/> </bean> <!-- --> <bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager"> <property name="sessionFactory"> <ref bean="sessionFactory"/> </property> </bean> <!-- 使用基于注解方式配置事务 <tx:annotation-driven transaction-manager="transactionManager"/> --> <tx:advice id="txAdvice" transaction-manager="transactionManager"> <tx:attributes> <tx:method name="save*" propagation="REQUIRED"/> <tx:method name="add*" propagation="REQUIRED"/> <tx:method name="delete*" propagation="REQUIRED"/> <tx:method name="update*" propagation="REQUIRED"/> <tx:method name="*" read-only="true"/> </tx:attributes> </tx:advice> <!-- --> <aop:config> <aop:pointcut id="allManagerMethod" expression="execution(* com.shopping.action.*.*(..))"/> <aop:advisor advice-ref="txAdvice" pointcut-ref="allManagerMethod"/> </aop:config> </beans>
供在其他的项目中参考。
发表评论
-
nginx 配置 CORS 支持跨域访问
2014-11-11 20:26 11600CSS代码设置了一些字体,如果跨域访问这些字体,就会加载失败 ... -
Spring 线程使用实例
2013-05-03 11:20 7981)线程池的配置: <bean id=" ... -
Spring 定时器配置实例
2013-05-03 10:42 758配置Spring定时器的触 ... -
spring + ibatis 多数据源事务(分布式事务)管理配置方法
2012-12-16 15:32 205131、我先要给大家讲一个概念:spring 的多数据源事务,这是 ... -
dwr 与spring 完美整合
2012-12-09 20:59 5903dwr是我们进行web开发经常要使用的js框架之一。它可以很好 ... -
@Resource 注解不生效的解决方案
2012-12-07 20:20 8568在使用spring2.5进行开发时,如果不使用注解,就必须在j ... -
基于maven的struts+spring+ibatis(ssi)经典配置
2012-12-06 20:34 1138附件是基于maven 的struts2+spring+ibat ... -
FTL 使用自定义模板的方法
2012-11-24 23:54 17631前言: 1)在实际的工程中,可能存在FTL要引入相同的js或 ... -
org.apache.tomcat.util.http.Parameters processParameters
2012-11-23 16:00 83361)、在页面提交表单后,tomcat 控制台打印台一个 警告信 ... -
修改struts2默认的result-type
2012-11-21 23:21 721一、在使用struts2进行开发时,struts2默认支持的文 ... -
org.w3c.dom解析xml
2012-05-24 16:21 2576xml 文件格式如下: <?xml version=& ... -
Spring 事负级别
2012-02-25 14:46 767一、Spring 中事负级别: Propagation 属性 ... -
struts2+ajax+json 实例
2012-02-24 17:27 88501、struts2 要支持json,需要先引入包,包的下载地址 ... -
Action中直接返回Ajax请求值的方法
2011-08-11 11:43 2134在实际的项目中,可能存在这样的情况:我们要通过Ajax访问Ac ... -
struts2 select 中使用方法总结
2011-05-31 13:28 1132struts2的select标签中,常 ... -
struts2 中 <s:radio/> 设置默认值的方法
2011-03-16 10:35 37391.遇到value是字条串的时候: 性 别:<s:ra ... -
Tomcat 5.5 日志文件配置方法
2011-03-15 17:25 1076在使用Tomcat 开发项目时,需要打印出更多的信息时,需要配 ... -
java.lang.ClassCastException: $Proxy11
2011-03-15 14:14 1286运行 SSH 的程序报以下错误: java.lang.Cla ... -
default.properties 存放的位置
2011-03-03 17:41 1788default.properties 存放 struts2- ... -
validation.xml 配置样例
2011-02-15 15:12 665validation.xml配置样例如下: <?xml ...
相关推荐
header('Content-Type: application/octet-stream'); header('Content-Disposition: attachment; filename="filename.ext"'); readfile('path/to/file.ext'); ``` 6. **用Email显示用户的Gravator头像** ...
- **Content Provider**:用于存储和检索数据,并将这些数据暴露给其他应用程序访问。 - **HelloActivity**示例: - `HelloActivity.java`中定义了一个名为`HelloActivity`的类,该类继承自`Activity`。在`...
'Content-Type': 'application/json', }, body: JSON.stringify({ key1: 'value1', key2: 'value2', }), }) .then(response => response.json()) .then(data => { console.log('Data received from Java:', ...
5. **媒体类型(Content-Type)**:通过设置请求头的`Content-Type`字段,指定发送或接收的数据格式,如`application/json`、`application/xml`等。 6. **HATEOAS(Hypermedia as the Engine of Application State...
// 设置请求头(例如Content-Type为application/json) httpPost.setHeader("Content-type", "application/json"); // 执行请求 CloseableHttpResponse response = httpClient.execute(httpPost); try { // ...
var content = new StringContent(json, Encoding.UTF8, "application/json"); var response = await client.PostAsync(url, content); response.EnsureSuccessStatusCode(); return await response.Content....
在提供的`WpfApplication1`项目中,你可以看到如何将上述知识点应用到实际的ListView实例中。该项目可能包含了自定义的样式文件(如App.xaml资源字典),以及具体的ListView配置代码。 总的来说,WPF ListView ...
var content = new StringContent(json, Encoding.UTF8, "application/json"); var response = await _httpClient.PostAsync("https://api.sf-express.com/rest/v1/orders", content); if (response....
WPF的应用程序可以通过XAML(Extensible Application Markup Language)来描述界面元素及其行为,从而实现界面与逻辑的分离。 #### 二、DataBinding的重要性 DataBinding是WPF中的一项核心功能,它允许用户界面...
'Content-Type': 'application/json' } }) .then(response => { console.log('用户创建成功:', response.data); }) .catch(error => { console.error('创建用户失败:', error.response.data); }); ``` 在实际...
在WPF中,按钮的样式可以通过XAML(Extensible Application Markup Language)进行定义。样式通常包含颜色、字体、边框、背景、阴影等视觉元素,以及按钮的默认状态、悬停状态、按下状态等交互表现。例如,你可以...