- 浏览: 10104 次
- 性别:
- 来自: 深圳
最新评论
文章列表
信徒疑惑问:struts2零配置,能实现真正没有配置文件吗?
佛说:嗯!
什么个情况?真的?传闻不都是说,不能实现吗?只是一次性配置吗?
如果你这么认为,你就不懂得用struts2的零配置。附件中的项目连struts.xml都没有,照样能用?why?struts2的约定大于配置规则。如果你没有配置,就按约定。
佛说“嗯”的意思是什么?第一:可以不要配置;第二:实际项目中,我们会有一些特定需求,其次,为了项目的需要,想改约定规则,我们还是会加配置,但并不是不能实现零配置。
注意:开发环境是myeclip ...
对jquery.validate.js的扩展方法
//字节长度
jQuery.validator.addMethod("byteLength", function(value, element, param) {
var length = value.length;
for( var i = 0; i < value.length; i++){
if(value.charCodeAt(i) > 127){
length++;
...
公共方法:
/*******************************************************************************
* 打开模式窗口
*/
function openMoodaDialog(sdesc, surl, swidth, sheight) {
var iWidth = 750;
var iHeight = 500;
if (swidth && swidth > 0) {
iWidth = swidth;
}
if (sheight && sheight > ...
spring.jar 是包含有完整发布模块的单个jar 包。但是不包括mock.jar, aspects.jar, spring-portlet.jar, and spring-hibernate2.jar。spring-src.zip就是所有的源代码压缩包。除了spring.jar 文件,Spring 还包括有其它21 个独立的jar 包,各自包含着对应的Spring组件,用户可以根据自己的需要来选择组合自己的jar 包,而不必引入整个spring.jar 的所有类文件。spring-core.jar这个jar 文件包含Spring 框架基本的核心工具类。Spring 其它组件要都要使用到 ...
以前一直在用tomcat,很多东西见怪不怪了。今日看到一个项目,挺复杂的。各种fitlter和selevlet在web.xml里面启动加载。无意间注意到web.xml里面没有配置<welcome-file>index.jsp</welcome-file>。平时项目都会默认有一个配置的。便 ...
public class LogoutListener implements HttpSessionAttributeListener {
private static final Log log = LogFactory.getLog(LogoutListener.class);
public void attributeAdded(HttpSessionBindingEvent event) {
log.info("add attribute to session");
System.out.println("add attribute to ses ...
数据库见空间表,用户
- 博客分类:
- 数据库见空间表,用户
1、用system用户建立表空间(CBTS)
create tablespace moon datafile 'E:\programe\ora11\product\11.1.0\db_1\oradata\db\moon.dbf' size 100M reuse autoextend on next 5m maxsize unlimited;
2、用system用户建立新用户(CBTS)
create user moon identified by moon default tablespace moon temporary tablespace TEMP;
3 ...
public class LogoutListener implements HttpSessionAttributeListener {
private static final Log log = LogFactory.getLog(LogoutListener.class);
public void attributeAdded(HttpSessionBindingEvent event) {
log.info("add attribute to session");
System.out.println("add attribute to sess ...
以前一直在用tomcat,很多东西见怪不怪了。今日看到一个项目,挺复杂的。各种fitlter和selevlet在web.xml里面启动加载。无意间注意到web.xml里面没有配置<welcome-file>index.jsp</welcome-file>。平时项目都会默认有一个配置的。便寻思tomcat是如何找到入口的。网上找了很多都是怎么改默认页面,经过自己的猜想+验证得出下面的结果。
1, 新建一个web项目tetstDemo,删除web.xml里面的<welcome-file>下内容, tomcat中启动,正常启动
2.直接 ...
public class MoneyUtil {
// 调试时用main函数
public static void main(String args[]) {
System.out.println(toRMB(62261.19));
}
static String HanDigiStr[] = new String[] { "零", "壹", "贰", "叁", "肆", "伍", "陆" ...