框架整合
襄州绿毛龟
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
springboot 注解方式整合mybatis (mysql数据库)
mybatis原创 2017-12-21 12:53:21 · 1022 阅读 · 1 评论 -
springboot thymeleaf简单整合
最近在学习springboot做一下记录 首先在pom.xml中导入thymeleaf依赖 org.springframework.boot spring-boot-starter-thymeleaf 然后是在application.properties中写配置spring.thymeleaf.cache=false spring.thym原创 2017-12-22 16:38:00 · 932 阅读 · 0 评论 -
java中定时器
转自http://blog.youkuaiyun.com/evilcry2012/article/details/52595622对于开发游戏项目的同胞来说,Timer 这个东西肯定不会陌生,今天对以前自己经常使用的定时进行了一番小小的总结!没有写具体实现的原理,只是列举出了其中的四种比较常见的使用方法,相对而言,所以只要按照其所列举的例子仿照即可!import java.util.Calendar;impo...转载 2018-02-27 15:51:02 · 191 阅读 · 0 评论 -
大数据运算
int long只能处理10位数及10位数以内的整数如果遇到10位数以上的数字就很麻烦了 但! JAVA中有专门用来作大数运算的东西BigInteger a = new BigInteger("1472976480000"); BigInteger b = new BigInteger("3600"); BigInteger c = a.divide(b); BigInteger...原创 2018-02-24 18:45:55 · 365 阅读 · 0 评论
分享