随笔分类 -  Web

Topics relate with web-application development but not specific enough to be included in a more dedicated class.
摘要:参考资料: https://msdn.microsoft.com/zh-cn/library/58wxa9w5(v=vs.120).aspx首先搭建环境, 也就是用 IIS Express 配置一个可以被局域网访问的 website, 其中包括了防火墙设置(很重要!) http://www.cn... 阅读全文
posted @ 2016-01-03 04:47 rldts 阅读(9272) 评论(0) 推荐(0) 编辑
摘要:首先搞清楚 ASP 与 ASP.NET 的区别(.asp与.aspx).https://msdn.microsoft.com/en-us/library/ms973813.aspx环境配置:http://www.cnblogs.com/qrlozte/p/5093422.html关于IIS Expr... 阅读全文
posted @ 2016-01-01 17:04 rldts 阅读(1612) 评论(0) 推荐(0) 编辑
摘要:-------------------------------------------更正, 我发现Program一项只设置为iisexpress.exe是不可行的. 只能设置为Any才行(当然这是overkill, 也是无奈之举, 因为我不知道应该具体指定哪几个程序才能最小化此端口的开放程度). ... 阅读全文
posted @ 2016-01-01 16:23 rldts 阅读(4232) 评论(0) 推荐(2) 编辑
摘要:1.URL Binding Failure Webmatrix解决办法: 用管理员权限运行 WebMatrix 并且 改 Port. 我反正是随便输入了一个 Port 就成功了, 默认的是 61039, 我改成了 41095.参考资料:http://answers.microsoft.com/en-... 阅读全文
posted @ 2015-11-30 19:51 rldts 阅读(317) 评论(0) 推荐(0) 编辑
摘要:1、设计图(UML的用例图、类图以及其他)2、倚赖的开源组件(通过编写maven的pom.xml来记录,要有详细的注释,每个组件用来干什么的,谁依赖于这些组件,要写清楚)3、源代码和配置文件4、测试代码和测试文档5、产生的所有文件、文档、归档,保存好,撰写心得体会,积累过程资产 阅读全文
posted @ 2014-06-28 13:12 rldts 阅读(394) 评论(0) 推荐(0) 编辑
摘要:原因:某个项目需要的jar包没有导入参考文章:http://www.blogjava.net/zJun/archive/2007/10/16/153374.html 阅读全文
posted @ 2014-06-23 21:48 rldts 阅读(1218) 评论(0) 推荐(0) 编辑
摘要:struts.xml中为了与struts1的MVC模式整合,需要类似如下的拦截器的引用 ... 阅读全文
posted @ 2014-06-18 15:48 rldts 阅读(425) 评论(0) 推荐(0) 编辑
摘要:我一琢磨,难道freemarker与struts2的整合也需要添加一个struts2-freemarker-plugin的jar包?后来找了半天,确认不需要这个。然后我就上网搜,这个FreeMarkerPageFilter到底在哪个jar包里,后来终于发现,就在struts2-sitemesh-pl... 阅读全文
posted @ 2014-06-16 16:25 rldts 阅读(463) 评论(0) 推荐(0) 编辑
摘要:今天做的一个Struts2+MyFaces(JSF)+Spring的应用,为了使用JSF,我的struts.xml中使用了如下代码 ... 阅读全文
posted @ 2014-06-16 15:45 rldts 阅读(423) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/guanghua2009/article/details/6644111目前我还不太会用maven,慢慢学吧目前就是用来下载自己要的jar包,先根据这篇转载的文章新建一个工程,然后修改pom.xml,然后把cmd拷贝到maven新建的工程的根目录下,运行命令... 阅读全文
posted @ 2014-06-15 18:20 rldts 阅读(231) 评论(0) 推荐(0) 编辑
摘要:struts.xml中写的是authorityInterceptor/xxx.jsp但是实际的文件结构是/authorityInteceptor/xxx.jspstruts2就报了404,所以遇到struts2报404的时候注意检查一下是不是这个问题 阅读全文
posted @ 2014-06-12 15:36 rldts 阅读(274) 评论(0) 推荐(0) 编辑
摘要:方法:MultipartParser mp = new MultipartParser(request, 10*1024*1024); mp.setEncoding("GBK"); //加上这行代码即可示例:upload.htmlenctype属性测试上传文件: 请求参数 cosUpload.j... 阅读全文
posted @ 2014-06-10 16:41 rldts 阅读(1844) 评论(0) 推荐(0) 编辑
摘要:如果你在一个项目中使用了struts2,也就是说,你在web.xml中配置了如下代码: struts2 org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter ... 阅读全文
posted @ 2014-06-09 16:33 rldts 阅读(274) 评论(0) 推荐(0) 编辑
摘要:这是因为你给Cookie设置了中文的value,比如Cookie c = new Cookie("user", "张三"); 阅读全文
posted @ 2014-06-08 17:54 rldts 阅读(187) 评论(0) 推荐(0) 编辑
摘要:在一个tomcat中部署了一个struts-1.3.10的web项目,但是没有吧struts-1.3.10的lib中的jar包放进tomcat/lib中,所以导致了这个错误(访问该项目的页面时) 阅读全文
posted @ 2014-06-08 16:09 rldts 阅读(410) 评论(0) 推荐(0) 编辑
摘要:比如说,只要jsp的代码里有或者之类的struts标签就会在访问该jsp页面的时候报这个错最后参考这篇文章,发现原来是因为web.xml中没有配置actionServlet(而且必须添加上参数才行!)参考文章http://perfectplan.iteye.com/blog/1565138strut... 阅读全文
posted @ 2014-06-08 14:30 rldts 阅读(493) 评论(0) 推荐(0) 编辑
摘要:看教材的时候写的DTD是用浏览器访问URL直接404,在eclipse中也没有代码提示,说明这个DTD已经不可用然后去看Struts2的官方JAVADOC,找到http://struts.apache.org/release/2.3.x/xwork-core/apidocs/index.html看了... 阅读全文
posted @ 2014-06-08 12:50 rldts 阅读(473) 评论(0) 推荐(0) 编辑
摘要:Struts2.3.16, Tomcat6.0.37,Java8/web.xml blk struts2 org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter ... 阅读全文
posted @ 2014-06-08 10:06 rldts 阅读(212) 评论(0) 推荐(0) 编辑
摘要:jar包放多了就报Exception什么Unable to load....上网搜了半天也没有能解决的下面所说的jar包放到WEB-INF/lib以及tomcat/lib中通过我一个一个添加到tomcat/lib中,直到启动服务器的时候不再报ClassNotFoundException或者Class... 阅读全文
posted @ 2014-06-08 09:44 rldts 阅读(739) 评论(0) 推荐(0) 编辑
摘要:就是在struts-config.xml中添加了这么一段 至于原因。。。不清楚我第一反应是form的action写错了,或者action-mapping配置有问题。。。其实不是,因为我发现以前可以运行的action都不能用了,所以才怀疑到这个上面来 阅读全文
posted @ 2014-06-06 17:09 rldts 阅读(171) 评论(0) 推荐(0) 编辑