oa系统笔记

来源:互联网 发布:西洋古玩软件 编辑:程序博客网 时间:2024/06/06 01:15

*.hmb.xml表关系属性实体映射

l1,写注释

格式为:?属性,表达的是本对象与?的?关系。
例:“department属性,本对象与Department的多对一

l2,拷模板:

多对一

<many-to-one name=“” class=“” column=“”/>

一对多

(Set)

<set name="">

        <key column=""></key>

        <one-to-many class=""/>

</set>

多对多

(两方都写这个)

(Set)

<set name="" table="">

        <key column=""></key>

        <many-to-many class="" column=""/>

</set>


l3,填空:
name属性:属性名(注释中的第1问号)
class属性:关联的实体类型(注释中的第2个问号)
column属性:
•<many-to-one  column="..">:一般可以写成属性名加Id后缀,如属性为department,则column值写成departmentId。
•一对多中的<key column="..">:从关联的对方(对方是多对一)映射中把column值拷贝过来。
•多对多中的<key column=“..”>:一般可以写成本对象的名加Id后缀,如本对象名为User,则写为userId。
•多对多中的<many-to-many column=“..”>:一般可以写为关联对象的名称加Id后缀。



点标签跟点文字效果一样

<input type="checkbox" id="1">
<label for="1">点击</label>


<label for="male">Male</label>
<input type="radio" name="sex" id="male" />


修改structs标签(自定义structs标签)

在structs2库下的META-INF下的structs-tags.tld

搜索标签

找到关联的tag-class

<name>a</name>
    <tag-class>org.apache.struts2.views.jsp.ui.AnchorTag</tag-class>

在src下生成一个同一包名的类,把原类的内容粘贴到其中。修改


// 在被嵌套时就刷新上级窗口

if(window.parent != window){
window.parent.location.reload(true);
}


s:if s:else使用

<s:if>

</s:if>

<s:else>

</s:else>


jquery checkout全选功能

<input type="checkbox" onclick="$('[name=ids]').attr('checked', this.checked)"/>


applicationContext.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:context="http://www.springframework.org/schema/context"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.5.xsdhttp://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsdhttp://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd"><!-- 自动扫描与装配bean --><context:component-scan base-package="com.dfqf.oa"></context:component-scan><!-- 导入外部的properties文件 --><context:property-placeholder location="classpath:jdbc.properties"/><!-- 配置SessionFactory --><bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"><!-- 指定hibernate的配置文件位置 --><property name="configLocation" value="classpath:hibernate.cfg.xml"></property><!-- 配置c3p0数据库连接池 --><property name="dataSource"><bean class="com.mchange.v2.c3p0.ComboPooledDataSource"><!-- 数据连接信息 --><property name="jdbcUrl" value="${jdbcUrl}"></property><property name="driverClass" value="${driverClass}"></property><property name="user" value="${user}"></property><property name="password" value="${password}"></property><!-- 其他配置 --><!--初始化时获取三个连接,取值应在minPoolSize与maxPoolSize之间。Default: 3 --><property name="initialPoolSize" value="3"></property><!--连接池中保留的最小连接数。Default: 3 --><property name="minPoolSize" value="3"></property><!--连接池中保留的最大连接数。Default: 15 --><property name="maxPoolSize" value="5"></property><!--当连接池中的连接耗尽的时候c3p0一次同时获取的连接数。Default: 3 --><property name="acquireIncrement" value="3"></property><!-- 控制数据源内加载的PreparedStatements数量。如果maxStatements与maxStatementsPerConnection均为0,则缓存被关闭。Default: 0 --><property name="maxStatements" value="8"></property><!--maxStatementsPerConnection定义了连接池内单个连接所拥有的最大缓存statements数。Default: 0 --><property name="maxStatementsPerConnection" value="5"></property><!--最大空闲时间,1800秒内未使用则连接被丢弃。若为0则永不丢弃。Default: 0 --><property name="maxIdleTime" value="1800"></property></bean></property></bean><!-- 配置声明式事务管理(采用注解的方式) --><bean id="txManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">           <property name="sessionFactory" ref="sessionFactory"/>        </bean>             <tx:annotation-driven transaction-manager="txManager"/></beans>


0 0
原创粉丝点击