#P

从前端接收时间类型,要在实体类中加上@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")注解

后台通过对象接收前端传过来的时间类型的值时,需要使用@DateTimeFormat(pattern="yyyy-MM-ddHH:mm:ss")注解将前端传过来的值转换成时间类型的...

mysql zip 安装 和 修改密码

去官网下载想要安装的zip格式的文件(下载地址 https://dev.mysql.com/downloads)   下载完就解压到自己想要的目录下,然后配置环境  MYSQL_HOME变量名 变量值就是安装的目录的路径C:mysql-5.6.42-...

layui 在springboot2.x 时,页面展示不了layui的问题

[[]]是thymeleaf的内联表达式,在script上加 th:inline="none"即可   报错信息 ...

thymeleaf 如何在onclick传值 升级到springboot2.x时出错的解决方案

springboot2.x按照下面那样传值会出现这样的错误org.thymeleaf.exceptions.TemplateProcessingException:Onlyvariableexpressionsreturningnumbersorbooleansareallowedinthiscontext,anyot...

layui laytpl 语法

for循环 <scripttype="text/html"id="userImg"><ulclass="showImg">{{#for(vari=0,len=d.userImg.split(',');i<len.length;i++){}}{{#if(len[i]!=''){}}...
代码星球 ·2020-04-01

解决 An invalid domain was specified for this cookie

在tomcat的conf文件下的context.xml中加入<CookieProcessorclassName="org.apache.tomcat.util.http.LegacyCookieProcessor"/>  然后重启tomcat即可如图 ...

@RequestMapping() 路径写成manager tomcat启动不了的问题

@RequestMapping("/manager/limit")写成manager tomcat启动不起来改成manage就可以运行了@RequestMapping("/manage/limit")...

支付宝App支付配置

应用公钥和私钥是支付宝提供的工具自动生成的   项目中用到的是填入应用公钥之后自动生成的支付宝公钥,两者公钥很相似,但是不一样 还需要签约这2项功能 ...
代码星球 ·2020-04-01

使用 pagehelper 分页

//false关闭合理化true开启合理化(查询的页数没数据会返回最后一页数据)PageHelper.startPage(pageNum,pageSize,false);//默认开启合理化PageHelper.startPage(pageNum,pageSize);//按照字段排序PageHelper.orderBy(...
代码星球 ·2020-04-01

interceptor 拦截器的使用 (session验证)

需要引入http://www.springframework.org/schema/mvchttp://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd之前是3.0.xsdmvc:exclude-mapping报错需要改成3.2.xsd<mvc:inter...

poi excel 导入导出

/***Excel导入*@paramrequest*@paramfile*@return*@throwsException*/@RequestMapping("/test.do")publicObjecttest(HttpServletRequestrequest,@Param("file")MultipartFile...
代码星球 ·2020-04-01

spring FileCopyUtils类 上传图片

需要注入ServletContext@AutowiredprivateServletContextservletContext;/***上传图片*/privateStringsaveFile(MultipartFilefile){if(!file.isEmpty()){try{//getRealPath()取得WEB-...

spring 定时任务

<!--定时任务--><task:annotation-driven/><!--注入定时任务--><beanid="TimerTaskTest01"class="com.heitian.ssm.util.TimerTaskTest01"></bean><...
代码星球 ·2020-04-01

RequestMapping manager问题

@Controller@Scope("prototype")@RequestMapping("/managers")用manager时请求报404加s就可以了,不知道是为什么?难道是manager关键字?...
代码星球 ·2020-04-01
首页上一页...32793280328132823283...下一页尾页