`
zsjg13
  • 浏览: 145173 次
  • 性别: Icon_minigender_1
  • 来自: 安徽
社区版块
存档分类
最新评论
文章列表

下载Ext JS

30天的试用版:http://www.sencha.com/products/download/   GPL版:http://www.sencha.com/legal/GPL/   还可以使用CDN的方式,这样就不需要将库存放在自己的计算机上
修改eclipse中的eclipse.ini配置文件,在最后面加上下面几行代码即可:   -Dorg.eclipse.swt.browser.DefaultType=mozilla -Dorg.eclipse.swt.browser.UseWebKitGTK=true -Dorg.eclipse.swt.browser.XULRunnerPath==/usr/lib/xulrunner-2 -Dorg.eclipse.swt.internal.gtk.cairoGraphics=false
Gradle提供了开箱即用的插件用于组装WAR文件,以及将其部署到本地Servlet容器中。   使用War以及Jetty插件: War插件扩展了Java插件:添加了一些用于web应用开发的约定,以及对组装WAR文件的支持。Jetty带了一个嵌入式的容器实现 ...
the command-line runners can be used as a place to start the scheduled executor thread pool in order to run the worker threads in intervals.虽然这是可行的,但Spring为我们提供了一个更简洁的配置来完成同样 的目标:@EnableScheduling   先给Application类加上@EnableScheduling注解 @SpringBootApplication @EnableScheduling public class BookP ...
Build native mobile apps using JavaScript and React React Native lets you build mobile apps using only JavaScript. It uses the same design as React, letting you compose a rich mobile UI from declarative components. A React Native app is a real mobile app With React Native, you don't build a “mobi ...
虽然Node.js中的http核心模块可以用来实现web服务器,但要做很多工作,例如要检测每个文件的content type 因此我们决定用Connect模块,非常流行的Express web框架就是建立在Connect之上的   一个快速的静态web服务器: var connect = require('connect'); connect.createServer(     connect.static(__dirname) ).listen(8080);   要运行此代码,你需要安装Connect,当然你可以直接执行npm install connect,但最好是在你 ...
Apache的配置指令分为两类:一类是核心指令,它们通常是由核心模块提供,这些执行必须写在httpd.conf中,否则Apache可能无法工作,另一类是由标准模块或第三方模块提供,如mod_dav模块提供的dav功能。   在Apache的所有模块中最 ...
Django可以和Python 2.7或3版本一起工作地很好。   我准备用Python 3   1、创建一个隔离的Python环境 建议你用virtualenv创建隔离的Python环境,这样你就能够为不同的项目使用不同版本的包。还有个好处:安装Python包不需要任何管理员权限。   安装virtualenv:pip install virtualenv   创建一个隔离的环境:virtualenv my_env (这将会创建一个叫my_env的目录,其中包含了你的Python环境,当此环境处于激活状态时,你安装的任何Python库都会进入到my_env/lib/py ...
在开始做第一个AngularJS app之前,你需要知道AngularJS其中的一些不同组件。以下是必须了解的: 1. Model:展示给用户的数据。是简单的POJO。 2. View:这是用户访问你的页面时看到的,也就是原始的HTML牵涉到一些 directives和expressions被编译后并且链接了正确的scope后的结果。 3. Controller:驱动你的应用的业务逻辑。 4. Scope:就是一个context,其中存有 data models和functions。一个controller常常在scope中设置这些models和functions。 5. Direc ...
每个项目都应当有一个结构来组织其中的文件。Angular Seed 项目就提供了一个不错的骨架结构,就是提供给 AngularJS app用的。这样,你就可以马上开始开发工作了。   它还提供了一个预先配置好的测试环境,一些有用的脚本,还有一个已经可以用的web服务器。有了Angular Seed,你就有了AngularJS,还有其他相关脚本。   https://github.com/angular/angular-seed/tree/69c9416c8407fd5806aab3c63916dfcf0522ecbc   以上是我用的Angular Seed版本,在此页面上,点击“ ...
Node中的内置模块被称为Node核心。虽然Node的核心囊括了许多有用的功能,你同样很有可能需要用到社区创建的一些功能。   下面将学习如何利用 npm 来查找插件、查看插件的文档,以及插件的源码。   我系统上没有npm: 如果你已经安装了Node,则npm应该也装好了。可以在命令行输入 npm 来验证一下。如果不行,安装方法如下: cd /tmp git clone git://github.com/isaacs/npm.git cd npm sudo make install   安装好npm后,在命令行上输入 npm -v 可以验证版本号。   1、查找包 ...
This is a redis client GUI tool written based on Java SWT and Jedis. It's my objective to build the most convenient redis client GUI tool in the world. In the first place, it will facilitate in editing redis data, such as: add, update, delete, search, cut, copy, paste etc.   Features Windows E ...
The three basic tools used to build C++ applications are the compiler, the linker, and the archiver (or librarian).   The compiler takes C++ source files as input and produces object files, which contains a mixture of machine-executable code and symbolic references to functions and data.   The ...
SQL*Plus can also create and manipulate its own in-memory variables, and it set aside a few special variables that will affect its behavior. Actually, there are two separate types of variables in SQL*Plus: DEFINEs and bind variables. To assign a value to a DEFINE variable, you can use the DEFINE co ...
The dynamic class loading system is another new feature for Ext JS 4. It also provides an integrated dependency management system.   This new feature is optional and you should avoid using it in production,though it is very useful for the development environment. We are going to learn why it is ...
Global site tag (gtag.js) - Google Analytics