`
文章列表
<mvc:annotation-driven content-negotiation-manager="contentNegotiationManager" />    <bean id="contentNegotiationManager" class="org.springframework.web.accept.ContentNegotiationManagerFactoryBean">  <property name="favorPathExtension" value= ...

log4j配置

参考http://www.codeceo.com/article/log4j-usage.html --------------------------- web.xml中的配置------------------------------------------------------------------------------------      <!-- 设置根目录 --> <context-param> <param-name>webAppRootKey</param-name> <param-value> ...
   <!-- 支持注解权限验证 --> <bean class="org.springframework.web.servlet.handler.SimpleMappingExceptionResolver">      <property name="exceptionMappings">          <props>                     <!-- 无权限时提示页面 -->            <prop key="org.apache. ...
 删除 磁盘路径:\Users\当前用户\AppData\Roaming\Subversion\auth 下的所有文件即可 例:C:\Users\Administrator\AppData\Roaming\Subversion\auth
<script type="text/javascript"> $(document).ready(function(){ $.ajax({ type:'POST', url:'<%=path%>/user/ceshi.do', dataType:"json", contentType:"application/json", data:JSON.stringify([{id:"1" ...
 访问服务器IP就直接访问项目的做法我了解到了两种   第一种:首先你要将服务的访问的端口号改为80端口,即service.xml中     <Connector port="80" protocol="HTTP/1.1"                 connectionTimeout="20000"                 redirectPort="8443" URIEncoding="UTF-8"/> 你从eclipse导出的war包解压出来,直接覆盖到 ...
  function dateadd(startdate,addmonth){      //startdate:开始时间yyyy-mm-dd.  addmonth为 间隔的月   var year=startdate.split("-")[0]; var month=startdate.split("-")[1]; var day=startdate.split("-")[2];   var add=parseInt(addmonth);   //这段主要是把月和日中的像"01"这样的改成&qu ...
var showTimeSpan,timeType; setting={showTimeSpan:$('#clock'),timeType:"yyyy-MM-dd:HH:mm:ss"};     /**  * 调用的方法  * @param obj  */ function getCurrentTime(obj){ obj=$.extend(true,setting,obj); timeType=obj.timeType; showTimeSpan=obj.showTimeSpan; tick();   }   function tick() ...
   <!-- jdbc属性文件读入 --> <bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">         <property name="locations">             <list>                 <value>classpath:jdbc.propertie ...
说明: 项目中session都是有存活期的  ,当我们一直不操作程序,过了存活期之后,那样session就死亡了(为什么设置session存活期就没必要说明了把),这个时候程序就会没有任何权限去操作程序,我们要跳到登录页面,我们只需要在拦截器中添加判断代码即可,如果session过期  ,就跳登录,具体代码如下(spring拦截器的代码)     @Override  public boolean preHandle(HttpServletRequest request, HttpServletResponse response,  Object handler) throws Ex ...
var setting = { data: { simpleData: { enable: true } }, view: { showIcon: false }, callback:{ onClick:function zTreeOnClick(event, treeId, treeNode){    alert(treeNode.tId + ", " + treeNode.name+", "+treeId); ...
jsp或html代码中 <ul id="tree" style="margin-top: 5px;"></ul> javascript中 tree = $('#tree').tree({ url : '', animate : false, onClick : function(node) { }, onLoadSuccess : function(node, data) { var t = $(this); if (data) { $(data).each(functio ...
首先在页面中书写加载datagrid的面中书写加载datagrid的标签 <table id="roleManger"></table> 然后在javascript中书写如下示例代码 $('#roleManger').datagrid({ url : "<%=path%>/role/listRole.do", title : "", iconCls : "icon-save", pagination  :true,//分页 pageSize : ...
首先  在当前页面中书写隐藏的DIV eg:<div id="roleDialog" style="display: none;overflow: hidden;"> <table id="roleTable" border="false"></table>     </div> 这个地方要注意样式中要书写 display:none 然后在js中书写下面的代码 roleDialog = $('#roleDialog').show().dialog({ moda ...
Global site tag (gtag.js) - Google Analytics