`
不吃鱼的猫
  • 浏览: 25182 次
  • 性别: Icon_minigender_1
  • 来自: 上海
最近访客 更多访客>>
文章分类
社区版块
存档分类
最新评论
文章列表
主要是从美观,性能,扩展性,维护性,学习曲线上面来看。 我先说说我的看法, 美观:flex占优势 性能:这个,我没做过复杂的应用,小项目感觉差不多,请在复杂项目上的朋友帮忙指正 扩展性:flex方便一些,ext要写个proxy太麻烦了,需要相当的js功夫 维护性:这个,我觉得flex高一些,毕竟是为前段量身定做的。 学习曲线:个人觉得差不多,特别是ext很忽悠,学起来绝对没有想象的轻松。 希望在ext,flex上有复杂项目经验的朋友指正,谢谢!
毕业到现在转眼都4年了,虽然现在在公司的头衔是高级程序员,其实自己清楚自己的斤两,顶多算个初级程序员。究其原因还是自己没有做过像样的项目,都是在已有的项目上修修补补,别说全生命周期的大项目开发,哪怕一个像样的module都没有写过,自己在家里捣鼓的东西都是半途而废,半路夭折,没有坚持,所以可以说是一个不太合格的程序员。基本的技术框架都摸过,但都不深入,顶多算个知不道先生,碰到一点问题还是得求助于google,debug老半天,属于典型的笨鸟后飞,而且还经常飞飞停停,一晃都26岁了,一年一年一晃就过去了,以前经常在心里埋怨一个老同事,30多岁了的人了,整天混日子,写出来的代码不如刚毕业的,其实自己 ...
最近在看JVM(深入java虚拟机) 一个简单的java程序 int i = 0; for (;;) { i += 1; i *= 2; } 对应的byteCode以及助记操作码如下 // Bytecode stream: 03 3b 84 00 01 1a 05 68 3b a7 ff f9 // Disassembly: mnemonic bytecode offset iconst_0   // 03        0 istore_0   // 3b        1 iinc 0, 1    // 84        2                 // 00        ...
What is for? It's XML Prolog. prolog. The minimal prolog contains a declaration that identifies the document The declaration may also contain additional information: version: Identifies the version of the XML markup language used in the data. This attribute is not optional. • encoding: Identifies ...
Reusing SQL Fragments we use the tags <sql></sql>and <include></include>. The <sql></sql>tag contains the fragment to reuse, the <include></include>tag includes such a fragment in a statement. For example: <sql id="selectItem_fragment&qu ...
BeanFactory vs ApplicationContext Both of them are Interface ApplicationContext extends BeanFactory indirectly. (api for ApplicationContext:http://www.springframework.org/docs/api/org/springframework/context/ApplicationContext.html) ApplicationContext provide extra functionality such as I18N, send e ...
以动手实践为荣,以只看不练为耻。 以打印日志为荣,以出错不报为耻。 以局部变量为荣,以全局变量为耻。 以单元测试为荣,以手工测试为耻。 以代码重用为荣,以复制粘贴为耻。 以多态应用为荣,以分支判断为耻。 以定义常量为荣,以魔法数字为耻。 以总结思考为荣,以不求甚解为耻。 好像我“耻”的还是蛮多的,大家呢?
original from : java.sun.com/developer/technicalArticles/Programming/serialization(Discover the secrets of the Java Serialization API) Serialization is a built in mechnism in java, the serializable  works as a marker interface, which mean no other method need to be implement.  But what if we have t ...
There are 3 ways for processing mapping from DispatcherServlet to Controller BeanNameUrlHandlerMapping           map to url based on the name of Controller SimpleUrlHandlerMapping                  map to url with the collection of properties which configurated in the context configuration files. Comm ...
Sequence: 1)在SpringMVC中,DispatcherServlet作为前端控制器来负责接收用户通过浏览器发送的一个请求。 2)然后DispatcherServlet开始查询一个或多个HandlerMapping(记录了mapping between controller object and url 3)DispatcherServlet delegate the request to the correspondent Controller in which actually delegate to business Object. 4)After business met ...
写了好几年的程序的人不见得全部对语言基础都非常了解 比如说Java的内部类,除了在些框架里提供的之如spring里的callback以及GUI里面的常用匿名内部类,至少我个人很少在其他地方利用到,正好不忙,把这块部分好好补一补。 下面是总结的一些tips: 1.static inner class. 用法一:用于改进的singleton类(created by Jeremy Manson and Brian Goetz) the Initialization on Demand Holder (IODH) idiom which requires very little code and has ...
本人就职于上海一家中等规模(1000人+)的外企,做了三年的Java程序员,目前待遇一年下来所有加起来差不多10万年薪(税前),现在觉得做些外包打杂的活实在没意思,决定跳槽。 在最近找工作的过程中,发现有个现象非常苦恼,就是很NB的外企(ms,google)目前没有实力进去,目前能进去的就是和现在公司差不多性质的外包公司,但本人想向技术上深入发展。但是一般的外资公司做的事情非常琐碎,工作三年了,基本上做的都是小项目,实际在工作中学习的东西少之又少,没有大型的有价值的项目经验确实让我非常苦恼。相关技术都是自己工作以外摸熟的,可以说java/j2ee的各个技术都比较了解,基本开源的也是拿来能用,但 ...
In the best practise of java performance tuning We always heard about that: The long term object hold a short term object is one of the most likely way to lead to performace issue. What is that supposed to mean? It absolutely doesn't make any sence, So let's get it more concrete. Let's say In a servi ...
Global site tag (gtag.js) - Google Analytics