??xml version="1.0" encoding="utf-8" standalone="yes"?>最新欧美精品一区二区三区,91久久精品一区,一区二区久久久 http://www.aygfsteel.com/tantanxiaoshi/category/46414.html-I am not alone zh-cn Tue, 23 Nov 2010 08:23:34 GMT Tue, 23 Nov 2010 08:23:34 GMT 60 11?1?servletQlistener调用spring中bean http://www.aygfsteel.com/tantanxiaoshi/archive/2010/11/21/338615.htmlsyg syg Sun, 21 Nov 2010 08:44:00 GMT http://www.aygfsteel.com/tantanxiaoshi/archive/2010/11/21/338615.html http://www.aygfsteel.com/tantanxiaoshi/comments/338615.html http://www.aygfsteel.com/tantanxiaoshi/archive/2010/11/21/338615.html#Feedback 0 http://www.aygfsteel.com/tantanxiaoshi/comments/commentRss/338615.html http://www.aygfsteel.com/tantanxiaoshi/services/trackbacks/338615.html
1. 首先新徏listener, 我这里承了HttpSessionListener和ServletContextListener。ƈ通过q个Ҏ(gu)获取bean
1 public Object getBean(String name)
2 {
3 ApplicationContext ctx = WebApplicationContextUtils.getRequiredWebApplicationContext(context);
4 return ctx.getBean(name);
5 }
2. 在web.xml中配|\?br />
< listener >
< listener-class > cn.edu.ujn.wsjx.listener.LoginUserListener </ listener-class >
</ listener >
q里注意与spring的listener可能?x)有先后?br />
在listener里可?ILoginlService loginService = (ILoginlService)getBean("loginService"); 来用loginService?br />
另外一个比较常用的servlet也可以类似的配置来获取spring的beanQ来更好的有分层效果
目的Qservlet与spring整合
1. 写出q个c,可以l承HttpServlet或者其他的servletc,通过下面的语句获得voteService
IVoteService voteService = (IVoteService)WebApplicationContextUtils.getWebApplicationContext(this.getServletContext());
获得voteService后,p和action一栯用service层中的方法了
2. 在web.xml中配|?lt;servlet></servlet>?lt;servlet-mapping></servlet-mapping>
q样好像可以了
]]> 11?1日进度安?/title> http://www.aygfsteel.com/tantanxiaoshi/archive/2010/11/12/337891.htmlsyg syg Fri, 12 Nov 2010 03:09:00 GMT http://www.aygfsteel.com/tantanxiaoshi/archive/2010/11/12/337891.html http://www.aygfsteel.com/tantanxiaoshi/comments/337891.html http://www.aygfsteel.com/tantanxiaoshi/archive/2010/11/12/337891.html#Feedback 0 http://www.aygfsteel.com/tantanxiaoshi/comments/commentRss/337891.html http://www.aygfsteel.com/tantanxiaoshi/services/trackbacks/337891.html
d名称
责Q?/span>
最晚完?/span>
阶段成果
完成情况
评理功能全套模块(action,service,dao)
?/span>
11 ?6?/span>
作业模块完善
?/span>
11 ?6?/span>
验模块Q教师管理部分)
?/span>
11 ?6?/span>
Q完善已完成部分Q学?fn)远E调用技?/span>
?/span>
11 ?6?/span>
用户理功能模块
?/span>
11 ?8?/span>
d记录l计
?/span>
11 ?8?/span>
E制作模?/span>
?/span>
11 ?8?/span>
验模块Q学生管理部分)
?/span>
11 ?9?/span>
完成评q程调用模板
?/span>
?/span>
11 ?0?/span>
试整体功能
全体
11 ?1?/span>
后期优化Q测?/span>
12 ?7?/span>
]]> 11?日说?/title> http://www.aygfsteel.com/tantanxiaoshi/archive/2010/11/09/337681.htmlsyg syg Tue, 09 Nov 2010 15:06:00 GMT http://www.aygfsteel.com/tantanxiaoshi/archive/2010/11/09/337681.html http://www.aygfsteel.com/tantanxiaoshi/comments/337681.html http://www.aygfsteel.com/tantanxiaoshi/archive/2010/11/09/337681.html#Feedback 0 http://www.aygfsteel.com/tantanxiaoshi/comments/commentRss/337681.html http://www.aygfsteel.com/tantanxiaoshi/services/trackbacks/337681.html
校内的项目每位队员都有自q工作Q一周后Ҏ(gu)q度安排工作职责?br />
需要重申的Q项目按时完?#8230;…
]]> 11?日工作日?/title> http://www.aygfsteel.com/tantanxiaoshi/archive/2010/11/04/337266.htmlsyg syg Thu, 04 Nov 2010 14:26:00 GMT http://www.aygfsteel.com/tantanxiaoshi/archive/2010/11/04/337266.html http://www.aygfsteel.com/tantanxiaoshi/comments/337266.html http://www.aygfsteel.com/tantanxiaoshi/archive/2010/11/04/337266.html#Feedback 0 http://www.aygfsteel.com/tantanxiaoshi/comments/commentRss/337266.html http://www.aygfsteel.com/tantanxiaoshi/services/trackbacks/337266.html
里面的两个bean
< bean id ="datasource" class ="org.apache.commons.dbcp.BasicDataSource" destroy-method ="close" >
< property name ="driverClassName" value ="oracle.jdbc.driver.OracleDriver" ></ property >
< property name ="url" value ="jdbc:oracle:thin:@localhost:1521:databasename" ></ property >
< property name ="username" value ="root" ></ property >
< property name ="password" value ="root" ></ property >
</ bean >
< bean id ="sessionFactory" class ="org.springframework.orm.hibernate3.LocalSessionFactoryBean" >
< property name ="dataSource" >
< ref bean ="dataSourceApp" />
</ property >
< property name ="hibernateProperties" >
< props >
< prop key ="hibernate.dialect" >
org.hibernate.dialect.Oracle9Dialect
</ prop >
<!-- 允许自动提交 -->
< prop key ="hibernate.connection.autocommit" > false </ prop >
<!-- 昄sql语句 -->
< prop key ="hibernate.show_sql" > true </ prop >
</ props >
</ property >
< property name ="mappingResources" >
< list >
< value > com/mutildatasource/po/Iasolution.hbm.xml </ value >
</ list >
</ property >
</ bean >
接下来在lib文g夹中攑օojdbc14.jar包,其他配置和ssh与mysql时一栗部|Ԍq行Q即可?br />
接下来完成了d模块中的提示功能Q整合大部分功能在一块?
]]> 11?日工作日?/title> http://www.aygfsteel.com/tantanxiaoshi/archive/2010/11/03/337175.htmlsyg syg Wed, 03 Nov 2010 13:20:00 GMT http://www.aygfsteel.com/tantanxiaoshi/archive/2010/11/03/337175.html http://www.aygfsteel.com/tantanxiaoshi/comments/337175.html http://www.aygfsteel.com/tantanxiaoshi/archive/2010/11/03/337175.html#Feedback 0 http://www.aygfsteel.com/tantanxiaoshi/comments/commentRss/337175.html http://www.aygfsteel.com/tantanxiaoshi/services/trackbacks/337175.html
11 ?P星期三)工作日志
工作内容
1. 单位没什么Q务,ZU心Q上午学?fn)数据结构和法Q一直到下午三点?/p>
2. 修改数据库的不合理的地方Q用戯里添加了 班和专?两个属性列Q?/p>
3. 晚上按照计划Q进行了d模块的更?nbsp;?/p>
今日ȝ
明日安排
1. 完成学生处理作业的所有功能?/span>
]]> 11?日工作日?/title> http://www.aygfsteel.com/tantanxiaoshi/archive/2010/11/02/336878.htmlsyg syg Tue, 02 Nov 2010 14:12:00 GMT http://www.aygfsteel.com/tantanxiaoshi/archive/2010/11/02/336878.html http://www.aygfsteel.com/tantanxiaoshi/comments/336878.html http://www.aygfsteel.com/tantanxiaoshi/archive/2010/11/02/336878.html#Feedback 0 http://www.aygfsteel.com/tantanxiaoshi/comments/commentRss/336878.html http://www.aygfsteel.com/tantanxiaoshi/services/trackbacks/336878.html
11 ?P星期二)工作日志
工作内容
1. 整个上午参与与客L(fng)定表格样式的?x)?/p>
2. 更新昨天未能?qing)时上传的工作日志?nbsp;
3. 下午׃q度问题Q重新安排Q务,接手d模块的书写(本来很简单的一个模块,已经拖了半个月,当然Q我有不可推卸的责QQ?/p>
4. 注销功能的添加,学生Ҏ(gu)条g查找作业列表
5. 最亟待解决的问题:(x)下午帮队员完成投统计的功能Q因较q,我们使用QQ交流Q我本意是让Ҏ(gu)能理解,但半个小时过MQ也没能达成一_(d)所以只能我来手工修改代码,然后Ҏ(gu)参考,两分钟,Ҏ(gu)明白?#8230;…晚上Q同L(fng)QQQ帮另一名队员解决上传资源的问题Q从8点一直到9点半Q我p里p涂Q对Ҏ(gu)斯底?/p>
今日ȝ
交流最q速的方式q是面对面,而且有些事情必须面对?#8230;…
明日安排
1. 晚上完善d功能的编写?/font>
]]> 11?日工作ȝ?qing)说?/title> http://www.aygfsteel.com/tantanxiaoshi/archive/2010/11/02/336754.htmlsyg syg Tue, 02 Nov 2010 00:54:00 GMT http://www.aygfsteel.com/tantanxiaoshi/archive/2010/11/02/336754.html http://www.aygfsteel.com/tantanxiaoshi/comments/336754.html http://www.aygfsteel.com/tantanxiaoshi/archive/2010/11/02/336754.html#Feedback 0 http://www.aygfsteel.com/tantanxiaoshi/comments/commentRss/336754.html http://www.aygfsteel.com/tantanxiaoshi/services/trackbacks/336754.html l过一个周的整理、寻求方案,最l还是决定放弃让人振奋的ajaxQ而选择把参数都作ؓ(f)参数全部提交到服务器上去。虽然这h据量较大Q但旉是关键的Q不能l耽搁……
至于在公叔R的项目,现在仍然在做前期的需求分析,真正实施要等?1?日?br />
下午l箋更新…………………………
11 ?P星期一Q工作日?/span>
工作内容
1. 在action中获取requestQ不使用getter和setterҎ(gu)Q?/p>
HttpServletRequest request = (HttpServletRequest)ServletActionContext.getRequest();
或?/p>
ActionContext ctx = ActionContext.getContext();
HttpServletRequest request = ctx.get(ServletActionContext.HTTP_REQUEST);
2. 当在下拉框中更改评的时候,h作业列表Q这里通过提交全部信息的方法,所以ؓ(f)了防止刷新页面的时候下拉框不能选中刚才最后点ȝ评Q特意用<s:hidden>标签把课Eid传递到action中,然后再在jsp中重新获?nbsp;
3. 完成单个作业的更改,和删除功能,以及(qing)多个作业的删除功?/p>
4. l一以前的栏目管理,内容理Q和作业理cM
5. 协助队员q行投票l计的开发(修复h重复生成Q不能顺序读出问卷题目)
今日ȝ
明日安排
1. 剩余q有4个基本队员,3个稳定队员?/span>
2. 书写提供l学生提交作业、浏览作业的接口
]]>java处理excel http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/25/336130.htmlsyg syg Mon, 25 Oct 2010 15:00:00 GMT http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/25/336130.html http://www.aygfsteel.com/tantanxiaoshi/comments/336130.html http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/25/336130.html#Feedback 3 http://www.aygfsteel.com/tantanxiaoshi/comments/commentRss/336130.html http://www.aygfsteel.com/tantanxiaoshi/services/trackbacks/336130.html 下面是类Q? 阅读全文 ]]> 发现jsonQ?0?4日) http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/24/336038.htmlsyg syg Sun, 24 Oct 2010 15:01:00 GMT http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/24/336038.html http://www.aygfsteel.com/tantanxiaoshi/comments/336038.html http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/24/336038.html#Feedback 0 http://www.aygfsteel.com/tantanxiaoshi/comments/commentRss/336038.html http://www.aygfsteel.com/tantanxiaoshi/services/trackbacks/336038.html 原来׃个jar包:(x)jsonplugin.jar Q就是在lib中放|好q个包后Q在struts.xml中引用“json-default”,q|a(chn)ction的type为json卛_?
阅读全文 ]]> 10?8?目日志 http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/19/335543.htmlsyg syg Tue, 19 Oct 2010 03:50:00 GMT http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/19/335543.html http://www.aygfsteel.com/tantanxiaoshi/comments/335543.html http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/19/335543.html#Feedback 0 http://www.aygfsteel.com/tantanxiaoshi/comments/commentRss/335543.html http://www.aygfsteel.com/tantanxiaoshi/services/trackbacks/335543.html
看样子应该仔l学?fn)一遍struts2的标{?
]]> 使用dwr获取list<bean>时javascript的正写?(10?7? http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/17/335382.htmlsyg syg Sun, 17 Oct 2010 14:35:00 GMT http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/17/335382.html http://www.aygfsteel.com/tantanxiaoshi/comments/335382.html http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/17/335382.html#Feedback 0 http://www.aygfsteel.com/tantanxiaoshi/comments/commentRss/335382.html http://www.aygfsteel.com/tantanxiaoshi/services/trackbacks/335382.html 阅读全文 ]]> fckeditor通过action获取数据库中的内?10?5? http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/17/335375.htmlsyg syg Sun, 17 Oct 2010 13:54:00 GMT http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/17/335375.html http://www.aygfsteel.com/tantanxiaoshi/comments/335375.html http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/17/335375.html#Feedback 0 http://www.aygfsteel.com/tantanxiaoshi/comments/commentRss/335375.html http://www.aygfsteel.com/tantanxiaoshi/services/trackbacks/335375.html 阅读全文 ]]> 10?7日之前这几天的ȝ http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/17/335369.htmlsyg syg Sun, 17 Oct 2010 11:57:00 GMT http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/17/335369.html http://www.aygfsteel.com/tantanxiaoshi/comments/335369.html http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/17/335369.html#Feedback 0 http://www.aygfsteel.com/tantanxiaoshi/comments/commentRss/335369.html http://www.aygfsteel.com/tantanxiaoshi/services/trackbacks/335369.html 今天是告一D\了,除了几个需要进一步考察的解x式外Q自q功能模块基本写完Q而且已经开始着手已退出队员负责的部分代码Q这些模块功能类|写v来也比以前顺畅了好多。所以有些时间可以整理一下这几天的工作情况和所写所得?nbsp; 阅读全文 ]]> 使用dwr时service获取sessionҎ(gu)(10?4? http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/14/335185.htmlsyg syg Thu, 14 Oct 2010 15:19:00 GMT http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/14/335185.html http://www.aygfsteel.com/tantanxiaoshi/comments/335185.html http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/14/335185.html#Feedback 2 http://www.aygfsteel.com/tantanxiaoshi/comments/commentRss/335185.html http://www.aygfsteel.com/tantanxiaoshi/services/trackbacks/335185.html ActionContext ctx = ActionContext.getContext();
String teaUsername = (String) ctx.getSession().get("username");
只有用下面的Ҏ(gu)才能利获得session中的? org.directwebremoting.WebContext web = WebContextFactory.get();
// 得到servlet中的request/response对象
javax.servlet.http.HttpServletRequest request = web.getHttpServletRequest();
javax.servlet.http.HttpServletResponse response = web.getHttpServletResponse();
// 在此可提取request中相兌求参?..
// 取得s 阅读全文 ]]> 使用DWR整合springq行下拉框二U联(10?2日) http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/12/334694.htmlsyg syg Tue, 12 Oct 2010 14:34:00 GMT http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/12/334694.html http://www.aygfsteel.com/tantanxiaoshi/comments/334694.html http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/12/334694.html#Feedback 0 http://www.aygfsteel.com/tantanxiaoshi/comments/commentRss/334694.html http://www.aygfsteel.com/tantanxiaoshi/services/trackbacks/334694.html 目的Q打开面时自动刷新课E,而当选择另外的课E时Q栏目下拉框?x)发生相应变化? 阅读全文 ]]> 关于myeclipse和mysql中文q问题(10?1? http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/12/334692.htmlsyg syg Tue, 12 Oct 2010 14:12:00 GMT http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/12/334692.html http://www.aygfsteel.com/tantanxiaoshi/comments/334692.html http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/12/334692.html#Feedback 0 http://www.aygfsteel.com/tantanxiaoshi/comments/commentRss/334692.html http://www.aygfsteel.com/tantanxiaoshi/services/trackbacks/334692.html 前台使用jspQ插件有fckeditorQ后台数据库使用mysqlQ可视化工具sqlyog。这里用utf-8~码。现在开始配|:(x)
阅读全文 ]]> 10?0P星期天)工作日志 W六?/title> http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/11/334237.htmlsyg syg Sun, 10 Oct 2010 16:11:00 GMT http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/11/334237.html http://www.aygfsteel.com/tantanxiaoshi/comments/334237.html http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/11/334237.html#Feedback 0 http://www.aygfsteel.com/tantanxiaoshi/comments/commentRss/334237.html http://www.aygfsteel.com/tantanxiaoshi/services/trackbacks/334237.html 阅读全文 ]]> FCKeditor支持jsp的配|(myeclipse工具Q?/title> http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/10/334143.htmlsyg syg Sat, 09 Oct 2010 16:04:00 GMT http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/10/334143.html http://www.aygfsteel.com/tantanxiaoshi/comments/334143.html http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/10/334143.html#Feedback 1 http://www.aygfsteel.com/tantanxiaoshi/comments/commentRss/334143.html http://www.aygfsteel.com/tantanxiaoshi/services/trackbacks/334143.html IDEQMyEclipse6.5
框架QStruts2+spring+hibernate
步骤Q? 1. 在fckeditor的官方网站http://ckeditor.com/download下蝲FCKeditor_2.5.1.zip和FCKeditor-2.3.zipQfor javaQ,版本不同内容不同
2. 在MyEclipse中新建web目Q我的叫做wsjx
3. 解压~两个文Ӟ把FCKeditor_2.5.1.zip解压出来的fckeditor文gҎ(gu)在WebRoot目录下,把FCKeditor-2.3.zipQfor javaQ解压出来的web下的WEB-INF下的lib目录中的commons-fileupload.jar和FCKeditor-2.3.jar两个jar包拷到项目的lib目录下,把FCKeditor-2.3.zipQfor javaQ解压出来的src目录下的FCKeditor.tld拯到项目的WEB-IN 阅读全文 ]]> 10?P星期五)工作日志 http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/08/333992.htmlsyg syg Fri, 08 Oct 2010 11:10:00 GMT http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/08/333992.html http://www.aygfsteel.com/tantanxiaoshi/comments/333992.html http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/08/333992.html#Feedback 2 http://www.aygfsteel.com/tantanxiaoshi/comments/commentRss/333992.html http://www.aygfsteel.com/tantanxiaoshi/services/trackbacks/333992.html 阅读全文 ]]> hibernate的单向联删除问?/title> http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/06/333835.htmlsyg syg Wed, 06 Oct 2010 10:38:00 GMT http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/06/333835.html http://www.aygfsteel.com/tantanxiaoshi/comments/333835.html http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/06/333835.html#Feedback 3 http://www.aygfsteel.com/tantanxiaoshi/comments/commentRss/333835.html http://www.aygfsteel.com/tantanxiaoshi/services/trackbacks/333835.html 阅读全文 ]]> 10?P星期二)工作日志 http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/05/333779.htmlsyg syg Tue, 05 Oct 2010 15:33:00 GMT http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/05/333779.html http://www.aygfsteel.com/tantanxiaoshi/comments/333779.html http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/05/333779.html#Feedback 0 http://www.aygfsteel.com/tantanxiaoshi/comments/commentRss/333779.html http://www.aygfsteel.com/tantanxiaoshi/services/trackbacks/333779.html 阅读全文 ]]> ajax和servlet的整合配|?/title> http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/05/333748.htmlsyg syg Mon, 04 Oct 2010 16:29:00 GMT http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/05/333748.html http://www.aygfsteel.com/tantanxiaoshi/comments/333748.html http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/05/333748.html#Feedback 0 http://www.aygfsteel.com/tantanxiaoshi/comments/commentRss/333748.html http://www.aygfsteel.com/tantanxiaoshi/services/trackbacks/333748.html 阅读全文 ]]> 在Struts2的Action中取得请求参数值的几种Ҏ(gu) http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/04/333711.htmlsyg syg Sun, 03 Oct 2010 17:44:00 GMT http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/04/333711.html http://www.aygfsteel.com/tantanxiaoshi/comments/333711.html http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/04/333711.html#Feedback 0 http://www.aygfsteel.com/tantanxiaoshi/comments/commentRss/333711.html http://www.aygfsteel.com/tantanxiaoshi/services/trackbacks/333711.html 阅读全文 ]]> 10?P星期五)工作日志 http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/02/333676.htmlsyg syg Sat, 02 Oct 2010 15:38:00 GMT http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/02/333676.html http://www.aygfsteel.com/tantanxiaoshi/comments/333676.html http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/02/333676.html#Feedback 0 http://www.aygfsteel.com/tantanxiaoshi/comments/commentRss/333676.html http://www.aygfsteel.com/tantanxiaoshi/services/trackbacks/333676.html
既然不了别人,当然必须得管好自己,dq是按时完成Q有队员说我自己可以完成,我说“集体的力量更?#8221;Q其实,未必Q这句话是有一定的前提的,每个人都热爱自己做的事情Q即使做错,即无法l箋做,也依然寻扑U途径解决问题。以下是q两天的工作内容和明日计?br />
工作内容Q?br />
1. 前期关于hibernate的问题基本搞明白了,比如Q在数据库没有设|外键,而用hibernate来进行连接时完全可行有效的,LmQ栏目)和KcQ课E)是多对一的关p,可以通过HQL"from Lm as a where a.kc.id=?"获取指定评的所有栏目?br />
2. jsp通过sturts2标签获取后台action中的listQ其实很单,struts2提供了方便地Ҏ(gu)Qaction中声明List<String> aList;然后生成getter和setterҎ(gu)。struts2中可以通过<s:property/>标签获取q显C?br />
3. 如果要把jsp中的信息传到后台Q同栯在后台有此信息(与jsp中的nameQ的声明和getter和setterҎ(gu)Q但除此之外Q一定要在jsp中确保要传输到后台的信息一定要攑֜form中,否则提交无效?br />
4. q有一些零的问题Q这里不一一l说了,Mq两天基本完成了栏目理的功能,接下来就是需要页面的化?br />
明日计划Q?br />
1. 学习(fn)junitQƈ使用它测验已写出的代码?br />
2. 队员Q我q是希望也一栯完成q些东西?
]]> 9?0P星期四)工作日志 http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/01/333597.htmlsyg syg Thu, 30 Sep 2010 16:23:00 GMT http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/01/333597.html http://www.aygfsteel.com/tantanxiaoshi/comments/333597.html http://www.aygfsteel.com/tantanxiaoshi/archive/2010/10/01/333597.html#Feedback 0 http://www.aygfsteel.com/tantanxiaoshi/comments/commentRss/333597.html http://www.aygfsteel.com/tantanxiaoshi/services/trackbacks/333597.html 阅读全文 ]]> 9?9P星期三)工作日志 http://www.aygfsteel.com/tantanxiaoshi/archive/2010/09/30/333444.htmlsyg syg Wed, 29 Sep 2010 17:21:00 GMT http://www.aygfsteel.com/tantanxiaoshi/archive/2010/09/30/333444.html http://www.aygfsteel.com/tantanxiaoshi/comments/333444.html http://www.aygfsteel.com/tantanxiaoshi/archive/2010/09/30/333444.html#Feedback 0 http://www.aygfsteel.com/tantanxiaoshi/comments/commentRss/333444.html http://www.aygfsteel.com/tantanxiaoshi/services/trackbacks/333444.html 阅读全文 ]]> 9?8P星期二)工作日志 http://www.aygfsteel.com/tantanxiaoshi/archive/2010/09/28/333293.htmlsyg syg Tue, 28 Sep 2010 15:10:00 GMT http://www.aygfsteel.com/tantanxiaoshi/archive/2010/09/28/333293.html http://www.aygfsteel.com/tantanxiaoshi/comments/333293.html http://www.aygfsteel.com/tantanxiaoshi/archive/2010/09/28/333293.html#Feedback 0 http://www.aygfsteel.com/tantanxiaoshi/comments/commentRss/333293.html http://www.aygfsteel.com/tantanxiaoshi/services/trackbacks/333293.html 阅读全文 ]]> W五周,9?7P星期一Q工作日?/title> http://www.aygfsteel.com/tantanxiaoshi/archive/2010/09/28/333210.htmlsyg syg Tue, 28 Sep 2010 03:56:00 GMT http://www.aygfsteel.com/tantanxiaoshi/archive/2010/09/28/333210.html http://www.aygfsteel.com/tantanxiaoshi/comments/333210.html http://www.aygfsteel.com/tantanxiaoshi/archive/2010/09/28/333210.html#Feedback 0 http://www.aygfsteel.com/tantanxiaoshi/comments/commentRss/333210.html http://www.aygfsteel.com/tantanxiaoshi/services/trackbacks/333210.html
9 ?span lang="EN-US">27 P星期一Q工作日?span lang="EN-US">
工作内容
1. 数据库如期完成,明天开始代码的~写?/span>
2. 与老马反复考虑数据库的可行性?/span>
3. 当同时有学生?/span>(student) Q教师表 (teacher) Q管理员?/span>(admin) 三个表时Q想用用戯中的外键 (username) 兌 student ?/span>teacher ?/span>admin 的主?/span>(username) Q不知是否行得通。因为在 hibernate 中由关系生成对象时可能会(x)有问题?/span>
今日ȝ
低估了队员的能力Q怕自q意思对Ҏ(gu)法理解,其实错了。你不与他们交流Q他们永q了解不了你的意思?/span>
明日安排
1. 今天停网Q第二天把日志放到博客上?/span>
2. 队员可能?x)发生点调整Q有新成员加入,不知道对开发的人月有没有大的媄响(q没开始写代码Q?/span>
]]> 9?6P周日Q工作日?/title> http://www.aygfsteel.com/tantanxiaoshi/archive/2010/09/27/333009.htmlsyg syg Sun, 26 Sep 2010 16:28:00 GMT http://www.aygfsteel.com/tantanxiaoshi/archive/2010/09/27/333009.html http://www.aygfsteel.com/tantanxiaoshi/comments/333009.html http://www.aygfsteel.com/tantanxiaoshi/archive/2010/09/27/333009.html#Feedback 0 http://www.aygfsteel.com/tantanxiaoshi/comments/commentRss/333009.html http://www.aygfsteel.com/tantanxiaoshi/services/trackbacks/333009.html 阅读全文 ]]> W四周周?/title> http://www.aygfsteel.com/tantanxiaoshi/archive/2010/09/26/332879.htmlsyg syg Sat, 25 Sep 2010 19:25:00 GMT http://www.aygfsteel.com/tantanxiaoshi/archive/2010/09/26/332879.html http://www.aygfsteel.com/tantanxiaoshi/comments/332879.html http://www.aygfsteel.com/tantanxiaoshi/archive/2010/09/26/332879.html#Feedback 0 http://www.aygfsteel.com/tantanxiaoshi/comments/commentRss/332879.html http://www.aygfsteel.com/tantanxiaoshi/services/trackbacks/332879.html 阅读全文 ]]>
վ֩ģ壺
֣ |
ɽ |
|
|
֣ |
|
|
|
|
|
ӳ |
|
ո |
|
|
|
|
|
|
٤ʦ |
|
|
ӳ |
Ӣ |
|
ɳ |
|
|
̨ |
״ |
Ӻ |
Ϫ |
|
|
|
ˮ |
|
|
ͼ |
ѽ |
|