本月博客排行
-
第1名
龙儿筝 -
第2名
lerf -
第3名
fantaxy025025 - johnsmith9th
- xiangjie88
- zysnba
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - wy_19921005
- vipbooks
- benladeng5225
- e_e
- wallimn
- javashop
- ranbuijj
- fantaxy025025
- jickcai
- gengyun12
- zw7534313
- qepwqnp
- 解宜然
- ssydxa219
- zysnba
- sam123456gz
- sichunli_030
- arpenker
- tanling8334
- gaojingsong
- kaizi1992
- xpenxpen
- 龙儿筝
- jh108020
- wiseboyloves
- ganxueyun
- xyuma
- xiangjie88
- wangchen.ily
- Jameslyy
- luxurioust
- lemonhandsome
- mengjichen
- jbosscn
- zxq_2017
- lzyfn123
- nychen2000
- forestqqqq
- wjianwei666
- ajinn
- zhanjia
- siemens800
- Xeden
- hanbaohong
- java-007
- 喧嚣求静
- mwhgJava
最新文章列表
使用Maven自动化集成测试
参考文章:http://stackoverflow.com/questions/16935290/maven-deploy-webapp-to-tomcat-before-junit-test
There are a number of schools of thought as to how to handle this type of integration test with Maven. ...
WEB容器托管OSGi容器(轻量级集成方式)
OSGi是JAVA动态模块化的标准,使用OSGi构建面向模块、可重用、可热插拔服务是大家都想追求的,但实际采用OSGi作为系统主骨骼框架时却发现理想总是那么丰满,现实总那么骨感,究其原因,总结成以下几点:第一、采用OGGi架构对架构师的要求非常高,针对项目需求设计重用性、扩展性、耦合性良好的功能模块划分不是一件容易的事情,特别是项目需求经常变更的时候,简直就是噩梦;第二,OSGi ...
spring和struts2集成的一些认识
注:通常我们的action都要继承ActionSupport,这里都默认继承了该类
参考资料:
http://struts.apache.org/release/2.2.x/docs/spring-plugin.html
http://struts.apache.org/release/2.2.x/docs/spring-and-struts-2.html
...
AXIS2集成到自己的WebApp中
最近在做WebService的项目用到了AXIS2但是不知道怎么才能把AXIS2集成到我自己的工程中在这里做一下小记以便日生用到。
关于AXIS2怎么发布WebService网上的例子都是直接用的Axis2 war这里就不做介绍了。其实将AXIS2集成到自己的工程中只需要以下几步就可以轻松实现:
1.建立自己的WebApp
2.将Axis2 war解出来将WEB-INF中的conf 和 s ...
Spring XFire 集成
web.xml
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:app*.xml</param-value>
</context-param>
...
GAE集成SpringMVC
摘要:
本教程,主要展示GAE如何集成Spring 3.0 MVC REST框架,同时,实现一个小案例。
所使用技术和工具:
1. Eclipse-Jee-Juno (version 4.2)
2. JDK 1.6
3. Google Plugin for Eclipse
4. Google App Engine Java SDK 1.7.4
5. Spring 3. ...
Spring 中自带的事务管理
Spring 集成 hibernate 的事务管理,不用我们手动开启和提交事务了:
需要在xml文件头部的 xsi:schemaLocation 添加:
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
hibernate 配置文件中可设的 ...
Activit与LDAP的集成
在Activiti的User Guide(5.9)里, 有介绍activiti与LDAP的集成示例.
<userTask id="task" name="My Task" activiti:assignee="${ldapService.findManagerForEmployee(emp)}"/>
T ...
compass+ssh2集成 hibernategps问题
配置信息
bean.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema- ...
Flex01:图文详解:flex+j2ee+eclipse+tomcat集成
集成需要的工具
Flash Builder 4.6:https://a248.e.akamai.net/client.akamai.com/install/bin/user_client_win_345c617/installer_no_upload.exe?name=Adobe_Flash_Builder_4.6-AkamaiDLM.exe
eclipse 3.7:
http://mirror.b ...
jsp 自定义标签之数据字典
集成spring实现jsp自定义标签数据字典
数据字典就是使用的html下拉框,实现数据显示的功能,但日常的应用中,很多数据都是动态加载的,不能在页面上直接写死,方便后期的维护和数据更新,同时也可以实现代码的复用。
形如:
解析过程:
1、在JSP中使用标签库标签
<%@ taglib prefix="dataDic" uri="/WEB-INF/dat ...
spring MVC3 集成 freemarker
1,eclipse 环境下:各个jar包什么的就不上传了。 2,首先web.xml
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
classpath*:applicationContext.xml
</pa ...