Skip to content

Commit 9a02ced

Browse files
committedApr 27, 2016
资料图纸管理 & lucene检索
1 parent f3459de commit 9a02ced

File tree

81 files changed

+2077
-252
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+2077
-252
lines changed
 
+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
clsCnt=128
1+
clsCnt=141
22
eclipse.preferences.version=1
3-
locCnt=14747
3+
locCnt=15796
44
pkgCnt=31
5-
sTime=2016\u5E744\u670825\u65E5 \u661F\u671F\u4E00 \u4E0A\u534811\u65F657\u520644\u79D2 CST
5+
sTime=2016\u5E744\u670827\u65E5 \u661F\u671F\u4E09 \u4E0A\u534804\u65F604\u520628\u79D2 CST
66
srcCnt=4

‎README.md

+43-1
Original file line numberDiff line numberDiff line change
@@ -302,5 +302,47 @@ function.js/openWindow(sHref,strWidth,strHeight)
302302
2. 用户新增/编辑页面:使用数据类型,加载对应数据类型下的集合
303303

304304
3. 联合查询+标量查询
305+
???hibernate的联合查询与sql联合查询???孰优孰劣
306+
307+
**利用反射技术 封装了一个 接口**
308+
```List<T> findCollectionByConditionNoPageWithSql(Map<String, Object> condition, Map<String, String> orderby, String scalar, ArrayList<String> innerJoin);
309+
```
310+
然而,,装逼失败。 因为查出来的object与 t的属性顺序不一致。[(´Д⊂ヽ]
311+
312+
313+
```
314+
315+
// 将List<Object[]>转换成List<ElecUser>
316+
317+
List<T> tList = new ArrayList<T>();
318+
if (list != null && list.size() > 0) {
319+
for (Object[] o : list) {
320+
try {
321+
T t = (T) entityClass.newInstance();
322+
Field[] fields = entityClass.getDeclaredFields();
323+
for (int i = 0; i < o.length; i++) {
324+
Field field = fields[i];
325+
field.setAccessible(true);
326+
field.set(t, this.convert2String(o[i], field));
327+
}
328+
tList.add(t);
329+
330+
} catch (Exception e) {
331+
e.printStackTrace();
332+
}
333+
}
334+
}
335+
return tList;
336+
```
337+
338+
339+
305340
4. 导出设置
306-
341+
342+
343+
##day08
344+
1. get请求:只能通过url,http协议
345+
2. dataChartAdd.jsp中的各种js校验
346+
3. ###lucene
347+
1. 如何进行分词?
348+
2. 如何计算得分??

0 commit comments

Comments
 (0)