关于开发一个J2EE项目的深度(技术方面)问题
做了一个项目用的技术是:struts2+mybatis+spring+memcache+mongodb+dbcp+lucene 数据库:mysql web容器:tomcat http服务器:nginx 想问大家,如何描…
window.open打开action返回页面窗口
在JSP页面中处理一些数据,点击一个按钮用form.submit()提交整个表单到action,struts配置文件根据action返回字符串选择返回页面,那么如何通过 win…
struts2重定向action执行返回SUCCESS页面不改变的原因?
form 表单提交请求updateEnterprise这个action,执行完数据库操作后返回SUCCESS重定向到selectEnterpriseByIdToView.shtml这个action查询信息后返回e…
struts2+poi导出excel出错
做struts2+poi导出excel时,发生如下错误,不知怎么解决,请各位指教: java.lang.IllegalStateException: Cannot call sendError() after the respo…
struts2里怎么传递参数
@Action(value = "/uploadFile/{filename}")     public String test(@PathVariable("filename") String filename) throws IOException { 怎…
struts 2 实体疑问
    我用struts 2 的实体和页面     action :       private TGxGoout tGxGoout = new TGxGoout()  &n…
struts2 中的iterator标签,如何遍历一个list,并且编号?
<s:iterator value="list" > <td id="1"></td> <td id="2"></td> <td id="3"></td> ..... </s:iterator> 把<td&g…
我用最新的hibernate版本和struts2最新的配置二级缓存
Exception in thread "main" java.lang.NoClassDefFoundError: org/hibernate/cache/TimestampsRegion  at java.lang.Class.forName0(Native Meth…
S2SH整合hibernate懒加载异常,求大神?
首先,贴错误: org.hibernate.LazyInitializationException: failed to lazily initialize a collection of role: org.blueshit.csms.entity.Privil…
在struts2 中的action中 无法转换泛型对象的类型。
代码如下 接口action public interface GenericTypeController<T,ID> { public String save() ......................... } 抽象类action public …
关于struts2的问题
前台部分: function doSendMessage() { var message = $('#message').val() var account = $('#account').val() if($.trim(message)=='') { return …