- 浏览: 101414 次
- 性别:
- 来自: 深圳
文章列表
思路:
1 用程序去访问 web service 服务.返回 xml文件。
2 用dom 去解析xml
3 用解析后的数据 生成 html文件
访问web service 的代码
public class StaticHTMLFile{
public static boolean PrintPage(String page, String url_addr) {
URL url;
String rLine = null;
PrintWriter fileOut = null;
InputStream ins = null;
...
<jsp:forward page="comment.do?method=find&&newsId=${news.id}"></jsp:forward>
<jsp:forward page="/comment.do?method=find&&newsId=${news.id}"></jsp:forward>
这俩个就是一个有"/"一个没有,今天碰到一个怪现象
org.apache.struts.chain.commands.InvalidPath ...
- 2009-02-13 17:03
- 浏览 3975
- 评论(1)
今天忽然想到自己以前写的代码
private Dao daos=null;
daos=new DaoImplS();
这样写是没有任何意义啊,
接口是隐藏他的实现类。我在后面就写了他的实现类。
应该他的实现类是通过别的new 的,然后传给他的,这样接口的目的就达到了。
eg;private Dao daos=null;
public voie setDaos(Dao daos){........}
...
- 2009-01-16 16:33
- 浏览 735
- 评论(0)
今天在网上看了一篇文章,解决了上述问题
用hibernate的 entity_name=“”;
对一个Java的实体eg:perBean搞多个mapping。
<class name="PerBean" entity="perBean01"/>
<class name="PerBean" entity="perBean02"/>
原文
http://www.javayou.com/diary/2001
- 2009-01-09 09:19
- 浏览 934
- 评论(0)
工具类;
public class Chchar {
public static String toChinese(String strvalue)
{
try{
if(strvalue==null)
return null;
strvalue = new Str ...
- 2009-01-06 17:19
- 浏览 878
- 评论(0)
http://www.blogjava.net/rendong/default.html?page=2
- 2009-01-05 17:03
- 浏览 916
- 评论(0)
http://www.sunjava.cn/FreeMarker.htm
http://jiasudu.iteye.com/blog/150520
- 2008-12-25 09:42
- 浏览 820
- 评论(0)
1.将struts2-spring-plugin-2.0.8.jar文件包含到我们的应用中,放到WEB-INF/lib目录下面即可。在这个插件包中有个struts-plugin.xml文件,它的内容如下:
<struts>
<bean type="com.opensymphony.xwork2.ObjectFactory" name="spring"
class="org.apache.struts2.spring.StrutsSpringObjectFactory" />
...
- 2008-12-24 10:42
- 浏览 1622
- 评论(0)
来自:http://www.blogjava.net/nokiaguy/archive/2008/05/04/198071.html
Struts2的拦截器和Servlet过滤器类似。在执行Action的execute方法之前,Struts2会首先执行在struts.xml中引用的拦截器,在执行完所有引用的拦截器的intercept方法后,会执行Action的execute方法。
Struts2拦截器类必须从com.opensymphony.xwork2.interceptor.Interceptor接口继承,在Intercepter接口中有如下三个方法需要实现:
void ...
- 2008-12-24 09:36
- 浏览 906
- 评论(0)