SSH
文章平均质量分 70
wangzi6hao
喜欢工作的时候做工作的事,生活的时候做自己的事。
想每个周未都可以去打球爬山。
展开
-
Spring updateByNamedParam方法使用 Spring保存数据返回id SqlUpdate类使用。
前天写了一篇文章也是Spring保存数据返回id SqlUpdate类使用的 地址:hi.baidu.com/%CD%F5%D7%D36%BA%C5/blog/item/e9458e38f63001fab211c7f2.html 但是里面的参数比较少,只有3个。 当出现了10多个参数的时候,明显用链接里的方法是不行的。因为值对应会很麻烦。 改成以下方法后,虽然代码多了,但是更明了清晰,...2009-11-27 22:17:34 · 184 阅读 · 0 评论 -
spring2保存数据返回id spring2 SqlUpdate操作
public int saveUser(UserForm user) { String sql = "insert into webSys_adminUser(userName,password,popedom,inTime) VALUES(?,?,?,now())"; SqlUpdate sqlUpdate = new SqlUpdate(jdbcTempla...2009-11-27 22:18:05 · 119 阅读 · 0 评论 -
Pager Tag Library和struts2出现pager.offset的ognl错误 以及关联Spring2错误
在csdn上查到此错误的解决办法是1.新建一个Pager类 2.在对应的Pager Tag Library action类里定义一个pager变量 3.在Pager类里包含: public void setOffset(int offset) { this.offset = offset; } pu...原创 2009-11-27 22:18:37 · 134 阅读 · 0 评论 -
spring2配置 utf-8解决
spring2配置 utf-8解决 <filter> <filter-name>encodingFilter</filter-name> <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>...原创 2009-11-27 22:22:08 · 99 阅读 · 0 评论 -
spring2配置proxool连接池 jtds驱动 spring2 jdbcTemplate配置
spring2+proxool 配置 String2+proxool 配置 proxool+ jtds 配置 spring+jdbcTemplate配置 web.xml <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi=...2009-11-27 22:23:34 · 132 阅读 · 0 评论 -
struts2 配置proxool路径问题
<servlet> <servlet-name>ServletConfigurator</servlet-name> <servlet-class> org.logicalcobwebs.proxool.configuration.ServletConfigurator</s...原创 2009-11-27 22:24:30 · 127 阅读 · 0 评论 -
org.apache.jasper.JasperException: File "/struts-tags" not foundc
2009-05-24 17:20 struts2 子目录jsp File "/struts-tags " not found ,根目录就没错 今天在做Struts2配置时,出了这样的错误. 先前按照 <jsp-config> <taglib> <taglib-uri>/struts-tags</taglib-uri> ...原创 2009-11-27 22:27:43 · 362 阅读 · 0 评论 -
struts.properties配置文件
2009-05-05 15:58 建议struts.properties全部配置到struts.xml里。 Struts 2框架有两个核心配置文件,其中struts.xml文件主要负责管理应用中的Action映射,以及该Action包含的Result定义等。除此之 外,Struts 2框架还包含一个struts.properties文件,该文件定义了Struts 2框架的大量...原创 2009-11-27 22:28:16 · 99 阅读 · 0 评论 -
Struts2 Spring2.5 Hibernate3.2 proxool9.1 tomcat6.18配置整合
网上很多朋友讲到了hibernate怎么用proxool 单独的怎么配置proxool,却很少把struts2和spring2还有hibernate整合起来的.花了一天的时候,才把配置整成功,分享出来给大家,希望可以少走弯路吧. 这里和大家讲一下,为什么要用tomcat来启动数据库连接池.除了资源控制一块,还有一个很大的原因是因为struts2要求spring的加载方式为<list...2009-11-29 13:59:46 · 119 阅读 · 0 评论