`
文章列表
windows ==> preferences ==> General ==> Editors ==> file Associations,
goole 用的
mybatis 调用存在过程{ call proc_saveamt_grant(?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?) } Serivice SAICDao.insertTsaveamt(tsaveamt); 根据mybatis 的 配置。返回的值自动保存在tsaveamt DAO void insertTemploydcmSQ(Tmember tmember)throws SQLException; 引用<select id="insertTsaveamt" parameterType="cn.com.mmm.cus ...
http://blog.csdn.net/longxia1987/article/details/8447119 于html <pre>标签:<摘自:w3school> pre 元素可定义预格式化的文本。被包围在 pre 元素中的文本通常会保留空格和换行符。而文本也会呈现为等宽字体。 <pre> 标签的一个常见应用就是用来表示计算机的源代码。 关于问题的思考: 在发现这个问题,首先我想到的是:这应该是不同浏览器对于代码文本信息的处理方式不同,chrome是将我这个form表单当成文本显示在页面上了。而不是一个html格式的元素;所以解决了这个问题我 ...
http://haohaoxuexi.iteye.com/blog/1812584 @Null 限制只能为null @NotNull 限制必须不为null @AssertFalse 限制必须为false @AssertTrue 限制必须为true @DecimalMax(value) 限制必须为一个不大于指定值的数字 @DecimalMin(value) 限制必须为一个不小于指定值的数字 @Digits(integer,fraction) 限制必须为一个小数,且整数部分的位数不能超过integer,小数部分的位数不能超过fraction ...

spring form tld

spring form tld.
好几天的困惑,这个问题终于解决。 以下这行是控制spring用注释来进行事务的。 引用 <tx:annotation-driven transaction-manager="transactionManager" proxy-target-class="true" /> 关键在于这行必须放在<servlet-name>mvc-dispatcher</servlet-name>下的spring指定配置文件中。这样serivce实现类就可以先被CglibAopProxy代理了。 而不能放在<context-para ...
由于 javax.jms 是sun的,所以maven中心库已经没有了。 所以我们要是有什么包以来于它的话,就用下面的去掉。 <dependency> <groupId>opensymphony</groupId> <artifactId>oscache</artifactId> <version>2.4.1<ersion> <exclusions>    <exclusion>        <groupId>com.sun.jmx</g ...
    <script>      $.ajaxFileUpload(                      {                   url:'${ctx}/toImage.do',            //需要链接到服务器地址                   secureuri:false,                   fileElementId:'picUrl',                        //文件选择框的id属性                   dataType: 'json',                ...
楼上说的是编辑环境的默认布局设置。     eclipse设置默认窗口布局模式的方法是:     1、打开eclipse;     2、左键单击菜单条中的 Window 菜单;     3、选择第七个,即 Reset Perspective 。     此时你的eclipse窗口布局已经还原为默认模式,祝你学习愉快!
用log4j在控制台输出,在web.xml中配置log4j.properties的路径,properties文件 log4j.rootLogger=DEBUG, Console #Console log4j.appender.Console=org.apache.log4j.ConsoleAppender log4j.appender.Console.layout=org.apache.log4j.PatternLayout log4j.appender.Console.layout.ConversionPattern=%d [%t] %-5p [%c] - %m%n log4j.lo ...
所有item表中,大,中,小item. 其中大的item是W039,中的事W002,小的事W003. 然后item的betogroup指向上一级item的grou. 求所有大的item和它所属的中,小item. select * from item smallitem where itemtype='W003' and exists (   select '1' from item middleitem where middleitem.itemtype='W002' and smallitem.betogroup= middleitem.group and exists   (     s ...
static   {        System.exit(-1);   } 比如我有一个pojo类, public class Category implements Serializable{ private static Properties sysProps = null; private static String dirConf; static { System.exit(-1); } } 那么这个类讲不会进入jvm中,如果服务器启动时需加载这个类,那么会导致服务器不能启动。
放在plugin目录下。
有get,post,delete,put. 其中delete,put在tomcat 里模式不支持,需要在web.xml里 引用<init-param>        <param-name>readonly</param-name>        <param-value>false</param-value>   </init-param> •接下来,从客户端通过 Ajax XMLHTTPRequest 发起 DELETE/PUT 请求: 引用[javascript] view plaincopyprin ...
Global site tag (gtag.js) - Google Analytics