一个平台是这样写的

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>

你可能感兴趣的:(平台)