- 浏览: 681772 次
- 性别:
- 来自: 上海
最新评论
-
章元o:
正解,问题解决了,要换tomcat的
webservice开发时项目启动过程中出现版本问题 -
dcloud:
大师,按照你的指点进行初始化工作,但是在connection. ...
AO连接sde出现java.lang.UnsatisfiedLinkError: no ntvauth in java.library.path -
yiran0314:
您好 关于这个问题能描述得更详细一点吗?
CXF异常处理 -
tianhandigeng:
找了半个小时了也没小号到m2e最新的地址,既然这个都让你找得这 ...
Myeclipse8.6安装Maven插件------ -
wxb880114:
这个发的比较早了,现在在myeclipse中有自带的,ecli ...
Myeclipse8.6安装Maven插件------
文章列表
原文:http://blog.csdn.net/Kit_LO/article/details/2230267
解析 在java项目中的spring applicationContext.xml文件的几种解析方式:
一种:
ApplicationContext cxt = new ClassPathXmlApplicationContext(“applicationContext.xml”);
cxt.getBean(“在applicationContext.xml中bean的id”);
二种:
ApplicationContext cxt =
new FileSystemXmlAppl ...
Spring处理id相同的bean
- 博客分类:
- 框架组合_SSH
1、在spring同一个配置文件中,不能存在id相同的两个bean,否则会报错。
2、在两个不同的spring配置文件中,可以存在id相同的两个bean,启动时,不会报错。这是因为spring ioc容器在加载bean的过程中,类DefaultListableBeanFactory会对id相同的bean进行处理:后加载的配置文件的bean,覆盖先加载的配置文件的bean。DefaultListableBeanFactory类中,有个属性allowBeanDefinitionOverriding,默认值为true,该值就是用来指定出现两个bean的id相同的情况下,如何进行处理。如果该值为fa ...
关于RestEasy的一个接口多种实现在调用时定位问题;
// 定义接口,并使用Path来实现REST发布
@Path("/StuJotmService")
public interface StuJotmService {
@GET
@Path(value = "/findById/{id}")
public String findById(@PathParam("id") String id);
}
// 实现1
public class Bean1 extends ...
RESTEasy integrates with Spring 3.0.x. We are interested in other forms of Spring integration, so please help contribute.
41.1. Basic Integration
For Maven users, you must use the resteasy-spring artifact. Otherwise, the jar is available in the downloaded distribution.
<dependency>
...
统一化规范化的软件开发是尤为重要的,在软件开发的生命周期中,软件开发过程的投入不是最大的,主要是后期软件的维护,在维护过程中,部署、bug修改、新功能增加、二次开发等等,若是没有规范化的代码编写,在后期的维护工作中,必然成为一件劳民伤财的事,极其的坑爹!
在java开发规范中主要有以下四个方面:
1.基本命名规范
2.常量命名规范
3.变量命名规范
4.方法命名规范
5.包的命名规范
基本命名规范:
字符集在26个英文字母、0-9数字、下划线
命名需要有一定的意义,推荐采用问题域的术语命名
命名尽量的短,如果命名太长 ...
java.lang.NoClassDefFoundError: javax/ws/rs/NotFoundException
at java.lang.Class.getDeclaredMethods0(Native Method)
at java.lang.Class.privateGetDeclaredMethods(Class.java:2427)
at java.lang.Class.getDeclaredMethods(Class.java:1791)
at org.springframework.core.type.StandardAnnotationMetadata.hasA ...
Oracle使用总结
- 博客分类:
- 数据库
1.使用Oracle创建表,与Mysql之间的几点区别
//Mysql
CREATETABLE tab_b (
id bigint(20) NOTNULL,
namevarchar(60) DEFAULTNULL,
address varchar(120) DEFAULTNULL,
PRIMARYKEY (id)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
//Orcale
CREATE TABLE tab_b (
id number(20) NOT NULL primary key,
...
### The error occurred while setting parameters
### SQL: insert into SYS_SECURITY_RIGHT_SYSTEM( SYSRIGHT_ID, SYS_ORDER, SYS_NAME, SYS_MEMO ) values ( ?, ?, ?, ? )
### Cause: java.sql.SQLException: ORA-01400: 无法将 NULL 插入 ("SMARTCITY"."SYS_SECURITY_RIGHT ...
最近这几天一直在整 怎么实现分布式事务。找了很多资料,不过大都相近类同。对Oracle、SQL Server、Mysql数已做过测试,其中Mysql5.0以上的才支持分布式事务。
对于这些,主要是之前根本没有接触过分布式事务,还错找了一些分布式事数据库的资料,呵呵,结果不是我目前所需要的。
测试过程中出现了很多错误,一直都通不过,以为是用户权限还有数据库服务的问题,但一切都配置良好的情况下还一直都通不过。结果发现,我导入的都是一些普通的JDBC连接包,于是狂搜实现XA事务的jar包。
Mysql: mysql-connector-java-5.1.6-bin.jar ...
在类中定义的数据成为类的数据成员,例如字段,常量等。而函数的成员方法则提供操作类的数据的功能,函数成员方法、属性、构造函数等。对象中的数据成员和方法一般都是对象私有的,即只有对象本身才能访问,其他对象 ...
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'jotm' defined in class path resource [applicationContext-all.xml]: Instantiation of bean failed; nested exception is org.springframework.beans.BeanInstantiationException: Could not instantiate bean clas ...
1.当pom.xml中引入jotm2.10版本时,报出如下错误:
Multiple annotations found at this line:
- Missing artifact javax.transaction:jta:jar:
1.0.1B
- Missing artifact
javax.resource:connector:jar:1.0
提示:Missing artifact javax.transaction:jta:jar:1.0.1B:compile,这是因为由于sun的许可协议,Maven repository中没有包含这个文件,
有两种解决方案, ...
在部署的时候出现Server Tomcat v6.0 Server at localhost was unable to start within 45 seconds. If the server requires more time, try increasing the timeout in the server editor.
也就是我们限定了部署的时间导致的错误,经过在网上的查找,找到了以下的解决方案:
我们找到当前工程的workplace目录,然后按下面的操作:
找到workspace\.metadata\.plugins\org.eclipse.wst.server.core\s ...
RestEasy报错
- 博客分类:
- REST服务_RestEasy
java.lang.NoClassDefFoundError: javax/enterprise/context/spi/Contextual
at java.lang.Class.getDeclaredConstructors0(Native Method)
at java.lang.Class.privateGetDeclaredConstructors(Class.java:2389)
at java.lang.Class.getConstructor0(Class.java:2699)
at java.lang.Class.newInstance0(Class.java:326) ...
httpclient报异常
- 博客分类:
- 开发语言_java
Exception in thread "main" java.lang.NoSuchFieldError: DEF_CONTENT_CHARSET
at org.apache.http.impl.client.DefaultHttpClient.setDefaultHttpParams(DefaultHttpClient.java:175)
at org.apache.http.impl.client.DefaultHttpClient.createHttpParams(DefaultHttpClient.java:158)
at org.apache.http.im ...