
Study
打瞌睡的咩
新一代码农
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
H5中input文件上传accept属性value值列表
<input type="file" />accept属性列表<input type="file" accept="application/msword" ><br><br>accept属性列表<br>1.accept="application/msexcel"2.accept=&转载 2018-08-30 09:45:49 · 2868 阅读 · 0 评论 -
H5 上传文件
jsp:代码<input type="file" name="applyFile" id="applyFile" capture="camera" accept="application/pdf,image/*" multiple="multiple" > <img alt="" src="" id原创 2018-08-31 15:49:50 · 1195 阅读 · 0 评论 -
Spring、SpringMVC、Shiro面试题
Tags : JavaEE,Spring,面试题发表时间: 2014-11-29 15:03:53原创作品,允许转载,转载时请务必以超链接形式标明文章 原始出处 、作者信息和本声明。否则将追究法律责任。比如: 转自:Su的技术博客 原文地址:https://blog.verysu.com/article/119 这些Spring面试题是从尚硅谷http://www.atguigu.c...转载 2018-08-31 15:13:57 · 12691 阅读 · 6 评论 -
gradle
先从Git拉取项目 导入gradle项目配置gradle原创 2018-08-23 14:18:21 · 246 阅读 · 0 评论 -
Spring 中配置log4j日志功能
一,添加log4j依赖包可从官网上下载该依赖包log4j-x.x.xx.jar,下载后 build path,添加依赖包 二,创建 log4j.properties 配置文件log4j.properties配置文件用来配置 日志的输出格式、输出的地址....### set log levels ###log4j.rootLogger = INFO, D, Elog4...转载 2018-08-16 10:45:31 · 586 阅读 · 0 评论 -
webservice从测试发布及,客户端调用,xml返回结果封装,xml返回结果解析
package com.px.train.util; import java.rmi.RemoteException;import java.util.List; import javax.xml.namespace.QName;import javax.xml.rpc.ParameterMode;import javax.xml.rpc.ServiceExceptio...原创 2018-08-10 14:51:04 · 3578 阅读 · 1 评论 -
Axis 访问webservice客户端(CXF+Spring webservice)
Axis 访问webservice客户端引入jar包,要把下面的包放在lib下不然会报错 访问代码String xmlStr = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"; Service service = new Service(); Call call;...原创 2018-08-10 09:09:31 · 505 阅读 · 0 评论 -
Spring+CXF的webservice接口的搭建
1.引入包经过测试引入以下包可运行2.编写service接口和实现类package com.px.train.service;import javax.jws.WebMethod;import javax.jws.WebService;/** * @description:培训上岗申请 * @author:weiwei * @date:2018/8/6 16:14...原创 2018-08-09 10:18:09 · 901 阅读 · 0 评论 -
applicationContext.xml编码问题
eclipse启动项目报错:Context initialization failed Line 1 in XML document from class path resource [applicationContext.xml] is invalid; nested exception is org.xml.sax.SAXParseException;只要用Notepad++编辑器把配原创 2015-08-28 16:51:26 · 878 阅读 · 0 评论 -
分页
package com.util;import java.util.List;//封装页面显示逻辑public class Page{private int totle;// 总共的数据量private int pageSize;// 每页显示多少条private int totlePage;// 共有多少页priva原创 2015-03-20 09:40:49 · 1120 阅读 · 0 评论 -
<s:iterator>如何实现一行显示指定个数的值
s:set name="data" value="{'x','x','x','x','x','x','x','x','x','x','x','x','x','x'}" /> s:iterator value="data" status="vs"> s:property /> s:if test="#vs.co转载 2015-03-20 11:32:57 · 592 阅读 · 0 评论