码迷,mamicode.com
首页 > 2014年07月13日 > 全部分享
SpringMVC案例2----基于spring2.5的注解实现
和上一篇一样,首先看一下项目结构和jar包 web.xml <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.su...
分类:编程语言   时间:2014-07-13 17:26:19    阅读次数:336
Caused by: java.lang.ClassNotFoundException: org.hibernate.annotations.common.reflection.MetadataPro
1、错误描述 信息: MLog clients using java 1.4+ standard logging. 2014-7-12 19:29:20 com.mchange.v2.c3p0.C3P0Registry banner 信息: Initializing c3p0-0.9.2.1 [built 20-March-2013 10:47:27 +0000; debug? true; tr...
分类:编程语言   时间:2014-07-13 16:58:50    阅读次数:327
Caused by: java.lang.ClassNotFoundException: org.jboss.logging.BasicLogger
1、错误描述 usage: java org.apache.catalina.startup.Catalina [ -config {pathname} ] [ -nonaming ] { -help | start | stop } 2014-7-12 19:35:50 org.apache.catalina.core.AprLifecycleListener init 信息: Loaded...
分类:编程语言   时间:2014-07-13 15:53:02    阅读次数:1049
Java中的BigInteger在ACM中的应用
Java中的BigInteger在ACM中的应用 在ACM中的做题时,经常会遇见一些大数的问题,这是当我们用C或是C++时就会觉得比较麻烦,就想有没有现有的现有的可以直接调用的BigInter,那样就方便很多啦。在java中就有的,所以在这儿我就做一个简要的介绍吧 —:在java中的基本头文件(java中叫包) import java.io.* importjava.util.*     ...
分类:编程语言   时间:2014-07-13 14:03:29    阅读次数:304
SpringMVC案例3----spring3.0项目拦截器、ajax、文件上传应用
依旧是项目结构图和所需jar包图: 显示配置文件hib-config.xml <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframew...
分类:编程语言   时间:2014-07-13 17:08:32    阅读次数:316
Caused by: java.lang.ClassNotFoundException: javax.persistence.Entity
1、错误描述 usage: java org.apache.catalina.startup.Catalina [ -config {pathname} ] [ -nonaming ] { -help | start | stop } 2014-7-12 19:41:17 org.apache.catalina.core.AprLifecycleListener init 信息: Loaded...
分类:编程语言   时间:2014-07-13 13:47:22    阅读次数:288
poj 2506 Tiling(java解法)
题目链接:http://poj.org/problem?id=2506 本题用的java解的,因为涉及到大数问题,如果对java中的大数操作不熟悉请点这儿:链接 思路:地推公式f[i]=f[i-1]+2*f[i-2] code: import java.math.*; import java.util.Scanner; public class Main { public...
分类:编程语言   时间:2014-07-13 16:58:07    阅读次数:221
POJ 1276 Cash Machine
多重背包问题。 题意是给你一个数目的钱,还有一些 不同数量 也不同面额的钞票。问最接近给定 的数目,不能大于。 老样子,转换为 01 背包 和完全背包做。 不过很神奇的是,给多重背包 用二进制思想转换的时候 用 k #include #include #include #include #include #include #include #include #i...
分类:其他好文   时间:2014-07-13 16:22:52    阅读次数:133
【翻译自mos文章】使用aum( Automatic Undo Management) 时遇到 ORA-01555错误--- 原因和解决方案。
使用aum( Automatic Undo Management) 时遇到 ORA-01555错误--- 原因和解决方案。...
分类:其他好文   时间:2014-07-13 17:23:38    阅读次数:234
OpenJDK 源码阅读之 Java 字节流输出类的实现
通过阅读 OpenJDK 源代码,描述了 Java IO 中,字节输出系列6个类的实现方式,并简单介绍了与压缩解压缩相关的几个类。...
分类:编程语言   时间:2014-07-13 15:51:02    阅读次数:270
php获取中文的拼音代码
php获取中文的拼音代码...
分类:Web程序   时间:2014-07-13 15:55:51    阅读次数:288
Spiral Matrix II
Given an integer n, generate a square matrix filled with elements from 1 to n2 in spiral order. For example, Given n = 3, You should return the following matrix: [ [ 1, 2, 3 ], [ 8, 9, 4 ], [...
分类:其他好文   时间:2014-07-13 16:37:16    阅读次数:199
POJ 2955 Brackets
Brackets Time Limit: 1000MS   Memory Limit: 65536K Total Submissions:    Accepted:  Description We give the following inductive definition of a “regular brackets” seq...
分类:其他好文   时间:2014-07-13 13:44:39    阅读次数:202
使用Java8提供的Duration类制作字幕时间轴调整工具
网上下载的字幕有时和片源的时间轴不一致,我们可以自己写一个工具来调整,也就是整体向前移动几秒,或者向后移动几秒。Java8中提供的Duration类使得这种时间计算极其方便。下面就以最简单的srt字幕格式为例说明。...
分类:编程语言   时间:2014-07-13 13:50:11    阅读次数:230
【翻译自mos文章】ABMR:在asm 环境中测试Automatic Block Recover 特性的方法
ABMR:在asm 环境中测试Automatic Block Recover 特性的方法...
分类:其他好文   时间:2014-07-13 15:55:13    阅读次数:211
poj 1426 Find The Multiple
题意为求出只由0,1组成的并且是所给数倍数的数, 广搜。。 因为首位不能为0,因此必为1;所以搜索的下一层为上一层的10倍和10倍加1; #include #include #include using namespace std; __int64 s[9999999]; __int64 r; void show(int q) { int i,j; s[0]=1; j=0; i=0;...
分类:其他好文   时间:2014-07-13 16:36:40    阅读次数:172
更改nginx网站根目录
默认网站根目录为/usr/local/nginx/html,要将它改成/homw/www vi /usr/local/nginx/conf/nginx.conf 将其中的         location / {             root   html;             index  index.php index.html index.htm;...
分类:Web程序   时间:2014-07-13 17:06:03    阅读次数:219
1468条   上一页 1 ... 28 29 30 31 32 33 34 ... 87 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!