- 浏览: 315764 次
- 性别:
- 来自: 辽宁鞍山
最新评论
-
linghuan:
[flash=200,200][url][img][list] ...
Spring MVC常用的注解 -
springmvc_springjpa:
spring mvc demo教程源代码下载,地址:http: ...
Spring MVC常用的注解 -
TremBear:
Spring MVC常用的注解 -
evening_xxxy:
...
Spring MVC常用的注解 -
xiao_xu_zi:
System.out.printn("" ...
Spring MVC常用的注解
文章列表
http://www.apache.org/
http://maven.apache.org/
http://search.maven.org/
http://www.bouncycastle.org/java.html
XPath
Camel supports XPath to allow an Expression or Predicate to be used in the DSL or Xml Configuration. For example you could use XPath to create an Predicate in a Message Filter or as an Expression for a Recipient List.
from(
Routes
Camel supports the definition of routing rules using a Java DSL (domain specific language) which avoids the need for cumbersome XML using a RouteBuilder.
For example a simple route can be created as follows.
RouteBuilder builder = new RouteBuilder() {
public void configure() {
...
关键:
cxf-services-ws-discovery-api-2.7.1.jar
cxf-services-ws-discovery-service-2.7.1.jar
起因:
我cxf实现的webservice放到tomcat,启动完成后 ,服务端总抛 javax.xml.bind.UnmarshalException: 意外的元素 (uri:"http://schemas.xmlsoap.org/ws/2005/04/discovery", local:"Resolve")。所需元素为<{http://docs. ...
Myeclipse->preferences->myeclipse->servers->tomcat->tomcat6.×->Launch->Create Launch Configuration->Arguments
在最后输入参数 -server -Xms512m -Xmx1024M -XX:MaxPermSize=400M
和JDK:
<?xml version="1.0" encoding="UTF-8"?><blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0" xmlns:cm="http://aries.apache.org/blueprint/xmlns/blueprint-cm/v1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:s ...
set classpath=%classpath%;E:\apache-cxf-2.7.1\lib\cxf-2.7.1.jar;wsdl2java.bat -p org.jinlong.client -frontend jaxws21
-client http://localhost:8080/LoginDemo/services/LoginService?wsdl
1. serviceMix 特点:支持的协议有:File;FTP;Http/s;jms;smtp;soap;tcp;xmpp与其他引擎的支持:Apache Camel;apache cxf;apache ode;drools;os workflow;pojos;quartz;scripting;saxon Xquery and xslt;ws-notification支持的安全:JAAS,WS-Security与w ...
MyEclipse常用插件下载【转】
- 博客分类:
- 程序员人生
MyEclipse常用插件下载
1.Eclipse下载 EMF,GEF - Graphical Editor Framework,UML2,VE - Visual Editor都在这里下载 http://www.eclipse.org/downloads/index.php 1.lomboz J2EE插件,开发JSP,EJB http://forge.objectweb.org/projects/lomboz 1.MyEclipse J2EE开发插件,支持SERVLET/JSP/EJB/数据库操纵等 http://www.myeclipseide.com 2.Properties Editor ...
一、 Apache ServiceMix简介
Apache ServiceMix是一个开源ESB组件,符合JBI规范。其特点是小巧灵活,可以很方便的集成到J2EE容器中,也可以单独作为一个服务器运行。。
Apache ServiceMix项目主页: http://servicemix.apache.org/
下载地址:http://servicemix.apache.org/downloads.html
HTTP Status 汇总【转】
- 博客分类:
- HTTP
HTTP Status 汇总
常见HTTP状态码
200 OK
301 Moved Permanently
302 Found
304 Not Modified
307 Temporary Redirect
400 Bad Request
401 Unauthorized
403 Forbidden
404 Not Found
410 Gone
500 Internal Server Error
501 Not Implemented
100 Continue 初始的请求已经接受,客户应当继续发送请求的其余部分
101 Switching Pr ...
MyEclipse开发SSH(Struts+Spring+Hibernate)入门
源码下载:http://ishare.iask.sina.com.cn/cgi-bin/fileid.cgi?fileid=2857703
1. 准备
工具:MyEclipse 6.0.1 GA、mysql-connector-java-5.0.4-bin.jar、MySql GUI Tools 5.0(便于管理MySql数据库,不是必须)
环境:Tomcat 5.5、MySql 5.0
1.1. 新建工程
操作:[Menu] File/New/Web Project
工程名:login
...
引用 MyEclipse中applicationContext.xml配置及常见问题
2011-05-21 12:21
本文引用自way《MyEclipse中applicationContext.xml配置及常见问题》
SHH(Struts1.2 + Spring2.0 + hibernate3.1)结合的javaWeb工程的applicationContext.xml文件配置:
<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http ...
Spring事务配置在DAO和Service层
分类: Spring 2011-03-16 10:40 453人阅读 评论(0) 收藏 举报
【转载自http://www.blogjava.net/hk2000c/archive/2007/11/01/157508.html】 【感谢原作者:hk2000c】 Spring通过AOP实现声明式事务管理。通常通过TransactionProxyFactoryBean设置Spring事务代理。我们需要一个目标对象包装在事务代理中。这个目标对象一般是一个普通Java对象的bean。当我们定义TransactionProxyFactoryBe ...
hibernate-xml配置模板
1.多对一单向映射(User- Group)【Group.hbm.xml文件如下:】<hibernate-mapping><class name="com.dragon.hibernate.Group" table="t_group"><id name="id"><generator class="native"/></id><property name="name"/></cla ...