会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
宇翊
博客园
首页
新随笔
联系
管理
上一页
1
···
13
14
15
16
17
18
下一页
2018年5月19日
SpringMVC,Controller的返回页面类型以及路径设置默认值
摘要: 一般设置在spring-servlet.xml里面设置 <!-- 对转向页面的路径解析。prefix:前缀, suffix:后缀 --> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
阅读全文
posted @ 2018-05-19 16:51 宇枫
阅读(4571)
评论(0)
推荐(0)
编辑
2018年5月16日
org.springframework.web.bind.annotation重定向的问题
摘要: @RequestMapping(value="/redir/authcode") public ModelAndView getAuthCode(){ String authUrl="https://openauth.alipay.com/oauth2/publicAppAuthorize.htm?app_id="+contant.APPID+"&scope=au...
阅读全文
posted @ 2018-05-16 15:02 宇枫
阅读(2006)
评论(0)
推荐(0)
编辑
2018年5月14日
把url链接转换成二维码的工具类
摘要: pom文件依赖 <dependency> <groupId>com.google.zxing</groupId> <artifactId>core</artifactId> <version>3.1.0</version> </dependency>
阅读全文
posted @ 2018-05-14 17:45 宇枫
阅读(3944)
评论(0)
推荐(0)
编辑
把xml转成javabean的工具类
摘要: 下面是调用方法 下面是javabean 希望对你们有帮助
阅读全文
posted @ 2018-05-14 16:07 宇枫
阅读(19814)
评论(0)
推荐(0)
编辑
把javabean复制到另一个javabean 使用BeanUtils.copyProperties(a,b) 复制
摘要: 该方法对于两种不同的jar包有两种不同的意义 ,a,b通常是两个结构相似的javabean,注意:a,b里的定义类型名称必须一致才能复制 引用的是org.springframework.beans 则是把a 的内容复制到b 引用的是org.apache.commons.beanutils 则是把b的
阅读全文
posted @ 2018-05-14 10:52 宇枫
阅读(2798)
评论(0)
推荐(0)
编辑
2018年5月10日
使用 com.alibaba.fastjson把json型数据解析成一个javabean
摘要: 使用 CardQueryResponseBO parseResultBean =JSON.parseObject(outParams, CardQueryResponseBO.class);
阅读全文
posted @ 2018-05-10 17:53 宇枫
阅读(4457)
评论(0)
推荐(0)
编辑
java把类似a=1&b=2&c=3的String类型数据转成map集合
摘要: 1 public static Map transStringToMap(String mapString, String separator, String pairSeparator) { 2 Map map = new HashMap(); 3 String[] fSplit = mapString.split(separator); 4 ...
阅读全文
posted @ 2018-05-10 17:19 宇枫
阅读(6220)
评论(1)
推荐(1)
编辑
解决spring-boot启动异常Unable to start EmbeddedWebApplicationContext due to missing EmbeddedServletContainerFactory bean
摘要: 第一种: 需要在主类头加上 @EnableAutoConfiguration 第二种: pom文件是否加了 <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter<
阅读全文
posted @ 2018-05-10 14:40 宇枫
阅读(12693)
评论(0)
推荐(1)
编辑
使用org.apache.poi导出Excel表格
摘要: 调用方法 <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> <version>3.10.1</version> </dependency>
阅读全文
posted @ 2018-05-10 11:22 宇枫
阅读(2147)
评论(0)
推荐(0)
编辑
2018年5月9日
Java ConcurrentModificationException异常原因和解决方法
摘要: 注:更详细https://blog.csdn.net/androidboy365/article/details/50540202/ 不要在 foreach 循环里进行元素的 remove/add 操作。remove 元素请使用 Iterator 方式,如果并发操作,需要对 Iterator 对象加
阅读全文
posted @ 2018-05-09 16:53 宇枫
阅读(461)
评论(0)
推荐(0)
编辑
上一页
1
···
13
14
15
16
17
18
下一页