一个平台是这样写的

1、登陆页面
<script type="text/javascript">
window.location="/hhxx_login.do";
</script>
</head>
<body>
</body>
2、strust2处理
<include file="com/hhxx/reimburse/action/remburse-action.xml"></include>
<package name="login" namespace="/" extends="struts-default">
<global-results>
<result name="login">hhxx_login.do</result>
</global-results>
<action name="hhxx_*" method="{1}" class="com.hhxx.login.LoginAction">
<result name="list">login-Default.jsp</result>
<result name="index">index.jsp</result>
<result name="module">left.jsp</result>
</action>
</package>
3、form的写法
<form id="loginform" name="loginform" action="hhxx_load.do" method="post" onSubmit="return checkUser();">
4、利用的是按钮提交
function sub()
{
if(checkUser()){
document.loginform.submit();
}
}
5、查询
public SysUser findUn(String username) {
return (SysUser) this.findUnique("from SysUser user where user.logname=? and user.state=1 ",username);
}
protected Query createQuery(String queryString, Object... values) {
Assert.hasText(queryString);
Query queryObject = getSession().createQuery(queryString);
if (values != null) {
for (int i = 0; i < values.length; i++) {
queryObject.setParameter(i, values[i]);
}
}
return queryObject;
}
protected SessionFactory sessionFactory;

@Autowired
public void setSessionFactory(SessionFactory sessionFactory) {
this.sessionFactory = sessionFactory;
}

protected Session getSession() {
return sessionFactory.getCurrentSession();
}
6、用户验证
7、指明namespace可以省去很多路径问题
<package name="work" namespace="/working/work" extends="json-default">
<action name="hhxx_*" method="{1}" class="com.hhxx.working.work.action.WorkAction">
<result name="worklist">worklist.jsp</result>
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值