`
sunbin
  • 浏览: 355116 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论
文章列表
首先,我在github上找到了一个不错的demo,这里放给大家一起看下: https://github.com/spring-projects/spring-boot/tree/master/spring-boot-samples/spring-boot-sample-activemq   确实可以实现功能,但是当我在8161默认的admin端口进行queue查询时,发现并没有我们的github-queue,虽然不太清楚具体的原因,但是解决方式倒是找到了,下面贴一下自己的实现: pox.xml: Java代码   <!-- ActiveMQ -->   ...
这次带来的是spring boot + redis 实现session共享的教程。   在spring boot的文档中,告诉我们添加@EnableRedisHttpSession来开启spring session支持,配置如下: Java代码   @Configuration   @EnableRedisHttpSession   public 
1、下载mybaties自动生成插件    2、用idea打开 在generator.xml里         <!-- 数据库链接URL、用户名、密码 -->         <jdbcConnection driverClass=“com.mysql.jdbc.Driver"                                     connectionURL="jdbc:mysql://db.ytx.net:3206/ytx_promotion"                                  ...
    首先你可以定义一个properties文件,如下所示: Java代码   // 文件名可以自行定义,这里名为uploaddefine.properties   upload.image[JPG]=.jpg   upload.image[PNG]=.png  
首先说明,SpringAop需要有aspectjweaver这个依赖,要先加入到maven中; Sql代码   <dependency>       <groupId>org.aspectj</groupId>       <artifactId>aspectjweaver</artifactId>       <version>1.8.8</version>  
这次的博客比较Spring中@PostConstruct、@PreDestroy、InitializingBean、DisposableBean、initMethod、destoryMethod的执行顺序,顺便会将construct以及与注入顺序一并比较   为了方便起见,这次不使用xml文件定义bean,完全采用注解配置,共3个类,都放在annotations包下 下面是定义的两个bean,Bean2直接加上@Conponent注解,加入到ioc容器 而Bean1,有1个注入属性、1个普通属性、1个构造器、3个初始化方法、3个销毁方法 Java代码   publi ...
  在@Autowire使用时,默认使用by-Type的方式进行注入 而@Resource,默认使用by-Type的方式注入,但使用by-Name方式时,相比@Autowire较方便 Java代码   public class SimpleMovieLister {            
转http://zk-chs.iteye.com/blog/2285329 这次给大家说一下自己对websocket + spring boot结合使用的一些经验   首先websocket是一个持久化的协议,实现了浏览器与服务器的全双工通信。不再像http那样,只有在浏览器发出request之后才有response,websocket能实现服务器主动向浏览器发出消息。   下面我们用spring boot来实现一下: 在spring boot的文档中,介绍了我们需要配置的文件 Java代码   // pom.xml   <dependency> ...
Spring boot+Spring Security 4配置整合实例本例所覆盖的内容:1.       使用Spring Security管理用户身份认证、登录退出2.       用户密码加密及验证3.       采用数据库的方式实现Spring Security的remember-me功能4.       获取登录 ...
springmvc 接收Date类型的json数据数据时,因为接收的字符串格式无法转换为日期类型所有需要对转入的日期做相应的配置   public class DateStuff { @JsonFormat(shape=JsonFormat.Shape.STRING, pattern="yyyy-MM-dd,HH:00", timezone="CET") public Date creationTime; }     文档参考:http://wiki.fasterxml.com/JacksonFAQDateHa ...
public class IPUtils { /** * 获取访问者IP * * 在一般情况下使用Request.getRemoteAddr()即可,但是经过nginx等反向代理软件后,这个方法会失效。 * * 本方法先从Header中获取X-Real-IP,如果不存在再从X-Forwarded-For获得第一个IP(用,分割), * 如果还不存在则调用Request .getRemoteAddr()。 * * @param request * @return */ public st ...
JUnit 单元测试断言推荐 AssertJ 前言     由于JUnit的Assert是公认的烂API,所以不推荐使用,目前推荐使用的是AssertJ。 AssertJ网站: http://joel-costigliola.github.io/assertj/ github上examples 地址 https://github.com/joel-costigliola/assertj-examples 附件中assertj-examples-octo-assertj-core-1.5.0是官方examples   整理一些常用的例子如下   对字符串断言 ...
1、下载安装Redis: cd /tmp wget http://redis.googlecode.com/files/redis-2.4.6.tar.gz tar -zxf redis-2.4.6.tar.gz cd redis-2.4.6 make sudo make install 配置init脚本: wget https://github.com/ijonas/dotfiles/raw/master/etc/init.d/redis-server wget https://github.com/ijonas/dotfiles/raw/master/etc/redis.conf su ...
https://github.com/qibaoguang/Spring-Boot-Reference-Guide/blob/master/SUMMARY.md Summary I. Spring Boot文档 1. 关于本文档 2. 获取帮助 3. 第一步 4. 使用Spring Boot

代码规范

Coding API documentation https://coding.net/api Getting Started 可前往 https://coding.net/u/baoti/p/Coding-API/git/tree/raml-doc/ 查看当前 API 文档 的 源码 当前文档还在完善过程中,许多 API 并未被包含在此文档中, 欢迎前往 项目 帮助完善。 通过 API 获得当前文档项目: $ curl -i https://coding.net/api
Global site tag (gtag.js) - Google Analytics