摘要:
跟着教程去写获得缓存的逻辑。但是死活不出现。查了一下log说我参数不对。 然后看了看源码。和教程的不一样。多了一个参数。UserHandle.myUserId()。查了一下,发写法 新写法: Method myUserId = UserHandle.class.getDeclaredMethod(" 阅读全文
摘要:
python3 -m pip install --upgrade pip 阅读全文
摘要:
分页从网上考的,好用。这个框架/*** 用于分页的工具类* @author 莫取网名*/public class Pager {private List list; //对象记录结果集private int total = 0; // 总记录数private int limit = 10; // 每... 阅读全文
摘要:
hql语句 String hql = "from Song where name like '%"+text+"%' or singer like '%"+text+"%' or alumn like '%"+text+"%' ";去重。重写pojo类的equals 和hascode。 @Overr... 阅读全文
摘要:
jsonlib的一些用法1. List集合转换成json代码List list = new ArrayList();list.add( "first" );list.add( "second" );JSONArray jsonArray2 = JSONArray.fromObject( list )... 阅读全文
摘要:
原因:json在使用的时候,不仅要有json开头的这一个包,其他包全都要加入,一共:commons-beanutils.jarcommons-collections.jarcommons-lang.jarcommons-logging.jarezmorph-1.0.6.jarjson-lib-2.2... 阅读全文
摘要:
Queryquery=session.createQuery(hql); num=(newInteger(query.uniqueResult().toString())) .intValue(); 阅读全文
摘要:
用struts2搭建框架后使用播放器播放中文歌曲链接的时候乱码。解决办法是tomcat的配置文件 server.xml上加一段代码在tomcat根目录/conf/server.xml中搜索在后面添加URIEncoding="utf-8"变成这样,即可解决 阅读全文
摘要:
今天做项目的时候做一个签到,设了一个键判断是否签到。然后想到用mysql的定时器进行0点清零。需要mysql5.1支持 select version();然后开始添加储存过程。delimiter //drop procedure if exists qiandaomode//create proce... 阅读全文
摘要:
这是我搭建django的时候的问题,那个时候重装了系统,出来后运行manage.py就报错了。UnicodeDecodeError: 'utf-8' codec can't decode byte 0xcf in position 1: invalid continuation byte。错误代码如... 阅读全文