java 项目相关
文章平均质量分 57
打酱油的张起灵
一瓶酱油打天下
展开
-
数据查询
package common.interfaces.impl;import java.util.Iterator;import java.util.List;import java.util.Map;import java.util.Map.Entry;import org.hibernate.Query;import org.springframework.orm.hiberna...原创 2016-08-31 09:32:12 · 365 阅读 · 0 评论 -
mapper时间条件查询
select from meet_room where <![CDATA[ mr_open_time <= #{startTime,jdbcType=VARCHAR} and mr_close_time >= #{startTime,jdbcType=VARCHAR} and mr_open_time = #{lastTime,jdbcType=原创 2017-07-05 20:04:56 · 5592 阅读 · 0 评论 -
根据经纬度获取地区信息
import net.sf.json.JSONArray;import net.sf.json.JSONObject;import java.net.URL;/** * 获取经纬度 * * @author jueyue 返回格式:Map map map.put("status", * reader.nextString());//状态 map.put("result", list原创 2017-11-17 14:08:49 · 1534 阅读 · 1 评论 -
highchat钻取前后台交互
@RequestMapping("getScanRateByPiId") @ResponseBody public ResponseBase getScanRateByPiId(String piId, HttpServletRequest request) { ResponseBase responseBase; try {原创 2017-11-03 09:24:49 · 502 阅读 · 1 评论 -
一个方法中多种不同返回结果形式
finally { if (StringUtils.isEmpty(error)) { try { int times = record.getGrDownTimes() + 1; generateRecordService.updDownTimes(id, ti原创 2017-11-17 14:18:57 · 738 阅读 · 0 评论 -
Log4j2配置
log4j2.xml <RollingRandomAccessFile name="RollingFileInfo" fileName="${web:rootDir}/logs/info.log" filePattern="${we原创 2018-01-23 16:41:35 · 696 阅读 · 0 评论 -
spring boot定位不到 thymeleaf
依赖要用<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId></dependency>而不是<dependency> &原创 2018-04-25 17:24:36 · 549 阅读 · 0 评论 -
在IDEA中Spring boot配置热部署无效问题解决方式
只要在pom文件中添加下面代码段即可<!-- 热部署 --><dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <optional>true&原创 2018-04-26 16:24:46 · 4271 阅读 · 3 评论 -
shiro笔记
Subject:主体,可以看到主体可以是任何可以与应用交互的“用户”;SecurityManager:相当于SpringMVC中的DispatcherServlet或者Struts2中的FilterDispatcher;是Shiro的心脏;所有具体的交互都通过SecurityManager进行控制;它管理着所有Subject、且负责进行认证和授权、及会话、缓存的管理。Authenticat原创 2017-07-05 15:26:11 · 379 阅读 · 0 评论 -
批量删除
function delete(rowId) {var ids = [];for (var i in rowId) {var rowData = $("#dailynSpectionGrid").jqGrid("getRowData",rowId[i]);ids.push(rowData.spec_id);}var param = $.param({'ids' :原创 2017-04-01 13:57:44 · 406 阅读 · 0 评论 -
Echarts前后台交互
http://blog.csdn.net/a4562116/article/details/46923827原创 2017-04-01 10:52:38 · 1680 阅读 · 1 评论 -
Log4j配置
web.xml webAppRootKey APP.root log4jConfigLocation classpath:log4j.properties org.springframework.web.util.Log4jConfigListener APP通常是原创 2017-06-30 17:48:37 · 274 阅读 · 0 评论