- 浏览: 26474 次
- 性别:
- 来自: 武汉
最新评论
-
leisure:
RequestProcessor.java中有
protect ...
springframe中的petstore中的setServlet()什么时候调用 -
leisure:
我在log4j配置文件中加入一条:
引用log4j.logge ...
springframe中的petstore中的setServlet()什么时候调用 -
宏基小键盘:
我以前测试了下是在web应用启动时就初始化了,不信可以在这个方 ...
springframe中的petstore中的setServlet()什么时候调用 -
宏基小键盘:
Spring的jpetstore很经典啊。
springframe中的petstore中的setServlet()什么时候调用 -
ahuaxuan:
这个方法会在action初始化的时候调用,这样在action初 ...
springframe中的petstore中的setServlet()什么时候调用
文章列表
cd/ 切换到根目录
ls 当前目录列表
ps -ef|grep tomcat 查看tomcat线程信息
kill 4667 4668 关闭4667 4668端口
/etc/init.d/tomcat start 启动tomcat
- 2008-06-18 15:44
- 浏览 954
- 评论(0)
1.遍历Map
<s:iterator value="#request.map" status="idx">
<tr>
<td ><input type="checkbox" id="<s:property value="#idx.index"/>" value="checkbox" onclick="checkParentBox('<s:property value=&quo ...
- 2008-05-13 11:52
- 浏览 3197
- 评论(0)
项目中需要用到批量添加,考虑到新能问题用jdbc实现.
记录下来,以后会用.
public void createRolePermissionBySql(final String roleId,final String[] permIds){
getHibernateTemplate().execute(new HibernateCallback() {
public Object doInHibernate(Session session)
throws HibernateException, SQLException {
if(per ...
- 2008-04-26 16:46
- 浏览 6102
- 评论(0)
看了下struts2的访问拦截器的机制,自己写了段类似的代码
public interface Test {
public String test(TestInvocation invocation);
}
public class Test1 implements Test {
@Override
public String test(TestInvocation invocation) {
// TODO Auto-generated method stub
System.out.println("hello!in tes ...
- 2008-03-25 14:43
- 浏览 2896
- 评论(0)
java 代码
</bean id="baseSqlMapClient" scope="singleton"
class="org.springframework.orm.ibatis.SqlMapClientFactoryBean">
<property name="configLocation">
<value>classpath:conf/ibatis/sql-map-config-all ...
- 2007-06-25 13:40
- 浏览 1344
- 评论(0)
几个插件
a.Easy Explore 1.0.1
//直接跳转到文件目录
b.jode decompiler plugin 1.0.3
//反编译插件
c.abator code generator for ibatis 1.00
//ibatis代码生成器,可以生成sql以及dto,dao文件
d.spring IDE 1.3.6
//用于检查spring配置文件
- 2007-06-06 16:55
- 浏览 1414
- 评论(0)
1.eclispe 缺省 VM 参数
-Djbo.debugoutput=console -Djbo.jdbc.trace=true -Djbo.logging.show.level=true
2.jar cvf husttools.jar cn 把cn文件下的所有文件打包到husttools.jar中
- 2007-06-06 16:54
- 浏览 1238
- 评论(0)
1.oracle中查找列数select count(*) from USER_TAB_COLUMNS where table_name ='TABLE_NAME';//表名要大写
2.创建已经存在的表create table xxxx as select * from yyyy;
3.两张关联表的统计
select r1.apply_id,r1.money_true,r2.money_return from (select ba.apply_id, sum(money_true) as money_true from base_apply ba,money_lo ...
- 2007-04-19 11:04
- 浏览 1222
- 评论(0)
java 代码
1.遍历table
var tableObj =document.getElementById("submenu2");
if(tableObj!=null&&tableObj.rows.length>1){
for(var i=1;i<tableObj.rows.length;i++){
var temp=tableObj.rows[i].cells[4].childNodes[0].chil ...
- 2007-03-12 14:42
- 浏览 1239
- 评论(0)
java 代码 P.java
public class P {
private String[] a={""};;
public String[] getA() {
return a;
}
public void setA(String[] a) {
this.a = a;
...
- 2007-01-26 16:57
- 浏览 1339
- 评论(0)
springframework 自带的例子jpetstore中的BaseAction类
public abstract class BaseAction extends Action {
private PetStoreFacade petStore;
public void setServlet(ActionServlet actionServlet) {
super.setServlet(actionServlet);
ServletContext servletContext = actionServlet.getServletContext();
WebApplicat ...