`
heweina2007
  • 浏览: 68786 次
  • 性别: Icon_minigender_2
  • 来自: 沈阳
社区版块
存档分类
最新评论
文章列表
dtree代码放到模态对话框中,点+号的时候弹出了一个新的窗口(地址栏为javascript:%20d.o(1);)的解决办法:在树的模态对话框页面加上的head标签里添加: <base target="_self">即可解决。 <head> <base target="_self"> </head>  
当Action中使用服务器端验证,并且验证未通过时,返回创建页,表单其他textfield输入信息都在,但是其他通过另外Action查询获取的数据丢失,如select中的字段,或树形结构字符串(通过service创建)。 解决办法: action里实现 Preparable接口,把select下拉或树形结构字符串的赋值放在prepare()里。这样在返回页面时,数据就不会丢失。
Windows 7 下SQL2005外围应用配置器更改失败 外围应用配置器里面的远程连接改成“同时使用TCP/IP和命名管道形式”出现如下异常: 错误信息:更改失败。(Microsoft.SqlServer.Smo) 其它信息: SetEnable对于ServerProtocol“Tcp”失败。(Microsoft.SqlServer.Smo) Access denied(System.Management) 解决办法:   点击SQL Server Configuration Manager中Sql Server ...
严重: Servlet.service() for servlet default threw exceptionjava.net.SocketException: Connection reset by peer: socket write error at java.net.SocketOutputStream.socketWrite0(Native Method) at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:92) at java.net.SocketOutputStream.write(Socket ...
package processmanager.handler; import org.jbpm.api.jpdl.DecisionHandler; import org.jbpm.api.model.OpenExecution; import org.jbpm.pvm.internal.env.EnvironmentImpl; import processmanager.service.IProcessManagerService; import processmanager.serviceimpl.ProcessManagerServiceImpl; /** * 判 ...
--创建临时表select billInfo.billId,billInfo.billTelephoneNumber,reportInfo.reportId,reportInfo.reportMobileTelephoneinto tempfrom billInfo,reportInfowhere billInfo.reportId = reportInfo.reportId --修改BillInfo表update billInfo set billTelephoneNumber = b.reportMobileTelephonefrom billInfo ainner join temp b ...
程序使用ssh整合框架,DAO实现层中的一个方法 /**  * 根据来电号码获取前三条表单信息  * @param billInfoTelephone 来电号码  * @return 前三条表单信息  */ public List<BillInfo> getTopThreeBillInfos(String billInfoTelephone){   List<BillInfo> list = new ArrayList<BillInfo>();  SessionFactory sessionFactory = this.getHibernateTempla ...
1.jbpm.cfg.xml <?xml version="1.0" encoding="UTF-8"?> <jbpm-configuration> <import resource="jbpm.default.cfg.xml" /> <import resource="jbpm.businesscalendar.cfg.xml" /> <!-- 事务管理器--> <import resource=" ...
package common; /** * MD5加密 * @author heweina * common.Password_encrypt.java * 2011-3-2 下午07:30:49 */ public class Password_encrypt { public Password_encrypt() { } //对外提供的方法 public String pw_encrypt(String password) { if (password == null || password.equals("") || password.lengt ...
package common; import java.lang.reflect.Field; import java.lang.reflect.Method; import java.util.List; /** * 改变特殊字符  * */ public class ChangeTSChar { private static String EncodeString(String inputContent)     {         //转义 单引号 .         inputContent = inputContent.replaceAll("'", ...
Global site tag (gtag.js) - Google Analytics