2015年4月20日

好的文章 -持续更新

摘要: SpringMVC+JQuery实现头像编辑器http://www.cnblogs.com/robert-blue/p/4433935.htmlJava入门记(四):容器关系的梳理(上)——Collectionhttp://www.cnblogs.com/wuyuegb2312/p/3867293.... 阅读全文

posted @ 2015-04-20 11:47 ygshen 阅读(146) 评论(0) 推荐(0) 编辑

2015年4月13日

Spring中的DataBinding(二) - Validation

摘要: @Controller@RequestMapping(value = "/custom/register")public class RegistrationController { // Set the data binding per controller @InitBinder ... 阅读全文

posted @ 2015-04-13 17:43 ygshen 阅读(256) 评论(0) 推荐(0) 编辑

2015年4月6日

Spring中的DataBinding(一)

摘要: DataBinding在Spring中应用。第一点:使用ModelAttribute指定带绑定的数据内容很重要的属性:@ModelAttribute([value=""])可以用在Controller中的方法中,那么此方法的返回将被添加到ModelMap中,作为当前这个Controller的Data... 阅读全文

posted @ 2015-04-06 18:58 ygshen 阅读(481) 评论(0) 推荐(0) 编辑

JavaBean之属性必须遵循命名规范

摘要: JavaBean中存在一些属性,今天写了一个Jsp的小例子。把Bean中的属性命名规范搞错了,具体的说属性的首字母大写了。于是乎Jsp中读取属性时总是报错。javax.el.PropertyNotFoundException: The class 'ClassName' does not have ... 阅读全文

posted @ 2015-04-06 15:13 ygshen 阅读(498) 评论(0) 推荐(0) 编辑

2015年3月18日

Spring中IoC - 两种ApplicationContext加载Bean的配置

摘要: 说明:Spring IoC其实就是在Service的实现中定义了一些以来的策略类,这些策略类不是通过 初始化、Setter、工厂方法来确定的。而是通过一个叫做上下文的(ApplicationContext)组建来加载进来的。这里介绍两种Context组建的构件过程 前提条件:在Gradle工程的bu 阅读全文

posted @ 2015-03-18 13:32 ygshen 阅读(1343) 评论(0) 推荐(0) 编辑

2015年3月14日

JSP使用JDBC ODBC 实例

摘要: 1.JDBC ODBC Brige driver是JSP连接数据库的驱动,只要安装了JDK这个驱动就默认安装了2. 配置JDBCODBC数据源的步骤:http://blog.csdn.net/lissdy/article/details/70598283. 创建WebApplication,参照本博... 阅读全文

posted @ 2015-03-14 23:35 ygshen 阅读(329) 评论(0) 推荐(0) 编辑

2015年3月8日

Gradle templates 的使用

摘要: 使用gradle时有一些繁琐的创建工程使用插件的步骤。这些步骤可以使用一些gradle的模板来代替。具体的操作步骤:安装gradle:Prerequired: Java SDK installed1. Dowload Gradle from:http://gradle.org/downloads2.... 阅读全文

posted @ 2015-03-08 07:21 ygshen 阅读(1118) 评论(0) 推荐(0) 编辑

2015年3月5日

Java 中使用Jackson反序列化

摘要: Build.gradle: compile group: 'org.codehaus.jackson', name: 'jackson-mapper-lgpl', version: '1.9.13' compile group: 'org.codehaus.jackson', name: 'j... 阅读全文

posted @ 2015-03-05 14:02 ygshen 阅读(505) 评论(0) 推荐(0) 编辑

2015年3月2日

Java getResourceAsStream返回为空的问题

摘要: 使用 getResourceAsStream("helloworld.propterties") 读取文件的stream,返回一直为空,试这把.properties文件放在 很多路径都无济于事。最终解决方案:该方法是从package 中寻找路径。比如你的包是 com.xx.yy.test.xml.... 阅读全文

posted @ 2015-03-02 13:16 ygshen 阅读(5379) 评论(0) 推荐(1) 编辑

2014年11月25日

MVC 学习随笔(一)

摘要: Model的绑定。(一)使用NameValueCollectionValueProviderC# 对NameValueCollectionValueProvider的支持是通过下面的类实现的// Library部分 public class NameValueCollectionValueProvi... 阅读全文

posted @ 2014-11-25 13:04 ygshen 阅读(409) 评论(0) 推荐(0) 编辑

导航