01 | <?xml version= "1.0" encoding= "UTF-8" ?> |
02 | <web-app xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" |
03 | xmlns= "http://java.sun.com/xml/ns/javaee" xmlns:web= "http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" |
04 | xsi:schemaLocation= "http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" |
05 | id= "WebApp_ID" version= "2.5" > |
06 | <display-name>nwr-web</display-name> |
08 | <param-name>contextConfigLocation</param-name> |
09 | <param-value>classpath*:applicationContext*.xml</param-value> |
12 | <param-name>log4jConfigLocation</param-name> |
13 | <param-value>/WEB-INF/classes/log4j.properties</param-value> |
16 | <param-name>log4jRefreshInterval</param-name> |
17 | <param-value> 60000 </param-value> |
20 | <listener- class >org.springframework.web.context.ContextLoaderListener</listener- class > |
23 | <listener- class >org.springframework.web.util.Log4jConfigListener</listener- class > |
26 | <filter-name>struts-prepare</filter-name> |
27 | <filter- class >org.apache.struts2.dispatcher.ng.filter.StrutsPrepareFilter</filter- class > |
29 | <param-name>actionPackages</param-name> |
30 | <param-value>com.essential.action</param-value> |
34 | <filter-name>struts-execute</filter-name> |
35 | <filter- class >org.apache.struts2.dispatcher.ng.filter.StrutsExecuteFilter</filter- class > |
38 | <servlet-name>dwr</servlet-name> |
39 | <servlet- class >org.directwebremoting.spring.DwrSpringServlet</servlet- class > |
41 | <param-name>debug</param-name> |
42 | <param-value> true </param-value> |
46 | <filter-name>struts-prepare</filter-name> |
47 | <url-pattern>/*</url-pattern> |
50 | <filter-name>struts-execute</filter-name> |
51 | <url-pattern>/*</url-pattern> |
54 | <filter-name>characterEncodingFilter</filter-name> |
55 | <filter- class >org.springframework.web.filter.CharacterEncodingFilter</filter- class > |
57 | <param-name>encoding</param-name> |
58 | <param-value>UTF- 8 </param-value> |
61 | <param-name>forceEncoding</param-name> |
62 | <param-value> true </param-value> |
66 | <filter-name>characterEncodingFilter</filter-name> |
67 | <url-pattern>/*</url-pattern> |
70 | <servlet-name>dwr</servlet-name> |
71 | <url-pattern>/dwr/*</url-pattern> |
74 | <welcome-file>News.jsp</welcome-file> |
77 | <error-code> 500 </error-code> |
78 | <location>/error.jsp</location> |
81 | <error-code> 402 </error-code> |
82 | <location>/error.jsp</location> |
唯一需要說(shuō)明一下的就是如果要使用struts2的注解就必須在配置filter的時(shí)候帶上actionPackages的參數(shù),這個(gè)參數(shù)就是設(shè)置struts2容器搜索action的包路徑。
下面是struts.xml的配置文件:
01 | <? xml version = "1.0" encoding = "UTF-8" ?> |
02 | <!DOCTYPE struts PUBLIC |
03 | "-//Apache Software Foundation//DTD Struts Configuration 2.1.7//EN" |
04 | "http://struts.apache.org/dtds/struts-2.1.7.dtd"> |
06 | < package name = "default" extends = "struts-default" > |
08 | < result name = "error" >error.jsp</ result > |
09 | < result name = "input" >error.jsp</ result > |
12 | < constant name = "struts.convention.default.parent.package" |
我是用的struts.convention插件把所有action的父包都定義為我自定義的一個(gè)default包,大家也可以自定義其它父包,這樣定義的父包是所有action的默認(rèn)父包,當(dāng)然你也可以使用@package標(biāo)簽為action類(lèi)定義不同的包。
下面介紹spring的配置文件:
01 | <? xml version = "1.0" encoding = "UTF-8" ?> |
02 | < beans xmlns = "http://www.springframework.org/schema/beans" |
03 | xmlns:context = "http://www.springframework.org/schema/context" |
04 | xmlns:dwr = "http://www.directwebremoting.org/schema/spring-dwr" |
05 | xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance" xmlns:aop = "http://www.springframework.org/schema/aop" |
06 | xmlns:tx = "http://www.springframework.org/schema/tx" |
08 | http://www.springframework.org/schema/beans |
09 | http://www.springframework.org/schema/beans/spring-beans-3.0.xsd |
10 | http://www.springframework.org/schema/context |
11 | http://www.springframework.org/schema/context/spring-context-3.0.xsd |
12 | http://www.springframework.org/schema/tx |
13 | http://www.springframework.org/schema/tx/spring-tx-3.0.xsd |
14 | http://www.springframework.org/schema/aop |
15 | http://www.springframework.org/schema/aop/spring-aop-3.0.xsd |
16 | http://www.directwebremoting.org/schema/spring-dwr |
17 | http://www.directwebremoting.org/schema/spring-dwr-3.0.xsd" |
19 | < dwr:annotation-scan scanRemoteProxy = "true" base-package = "com.essential.dwr" /> |
20 | < dwr:annotation-scan scanDataTransferObject = "true" base-package = "com.essential.entity" /> |
21 | < context:component-scan base-package = "com.essential" /> |
23 | < bean id = "configurer" class = "org.springframework.beans.factory.config.PropertyPlaceholderConfigurer" > |
24 | < property name = "locations" > |
25 | < value >classpath*:init.properties</ value > |
29 | < bean id = "mainDataSource" class = "com.mchange.v2.c3p0.ComboPooledDataSource" destroy-method = "close" > |
30 | < property name = "driverClass" value = "${jdbc.driverClass}" ></ property > |
31 | < property name = "jdbcUrl" value = "${jdbc.jdbcUrl}" ></ property > |
32 | < property name = "user" value = "${jdbc.user}" ></ property > |
33 | < property name = "password" value = "${jdbc.password}" ></ property > |
35 | < property name = "maxPoolSize" value = "${jdbc.maxPoolSize}" ></ property > |
36 | < property name = "minPoolSize" value = "${jdbc.minPoolSize}" ></ property > |
37 | < property name = "initialPoolSize" value = "${jdbc.initialPoolSize}" ></ property > |
38 | < property name = "idleConnectionTestPeriod" value = "${jdbc.idleConnectionTestPeriod}" ></ property > |
39 | < property name = "maxIdleTime" value = "${jdbc.maxIdleTime}" ></ property > |
40 | < property name = "acquireIncrement" value = "${jdbc.acquireIncrement}" /> |
44 | class = "org.springframework.jdbc.datasource.LazyConnectionDataSourceProxy" > |
45 | < property name = "targetDataSource" > |
46 | < ref local = "mainDataSource" /> |
50 | < bean id = "sessionFactory" |
51 | class = "org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean" > |
52 | < property name = "dataSource" > |
53 | < ref bean = "dataSource" /> |
56 | < property name = "hibernateProperties" > |
58 | < prop key = "hibernate.dialect" >${hibernate.dialect}</ prop > |
59 | < prop key = "hibernate.show_sql" >${hibernate.show_sql}</ prop > |
60 | < prop key = "hibernate.format_sql" >${hibernate.format_sql}</ prop > |
61 | < prop key = "hibernate.use_sql_comments" >${hibernate.use_sql_comments}</ prop > |
62 | < prop key = "hibernate.jdbc.batch_size" >${hibernate.jdbc.batch_size}</ prop > |
66 | < property name = "packagesToScan" value = "${hibernate.packagesToScan}" /> |
69 | < bean id = "transactionManager" |
70 | class = "org.springframework.orm.hibernate3.HibernateTransactionManager" > |
71 | < property name = "sessionFactory" > |
72 | < ref local = "sessionFactory" /> |
76 | < tx:advice id = "txAdvice" transaction-manager = "transactionManager" > |
78 | < tx:method name = "upd*" propagation = "REQUIRED" read-only = "false" /> |
79 | < tx:method name = "del*" propagation = "REQUIRED" read-only = "false" /> |
80 | < tx:method name = "add*" propagation = "REQUIRED" read-only = "false" /> |
81 | < tx:method name = "insert*" propagation = "REQUIRED" read-only = "false" /> |
82 | < tx:method name = "find*" propagation = "SUPPORTS" read-only = "true" /> |
83 | < tx:method name = "query*" propagation = "SUPPORTS" read-only = "true" /> |
84 | < tx:method name = "*" propagation = "SUPPORTS" read-only = "true" /> |
89 | < aop:pointcut id = "productServiceMethods" |
90 | expression = "${spring.execution}" /> |
91 | < aop:advisor advice-ref = "txAdvice" pointcut-ref = "productServiceMethods" /> |
首先前兩行配置是dwr和spring整合的配置第一個(gè)是配置dwr的遠(yuǎn)程代理對(duì)象的所在的包名,第二個(gè)則是dwr里的傳輸對(duì)象所在的包名。
下面一行是spring搜索bean的包名。下面其他的配置和以前沒(méi)什么變化。
現(xiàn)在來(lái)講講struts2的action用注解怎么實(shí)現(xiàn):
1.其實(shí)注解和xml配置步驟差不多首先肯定是配置包,但是我們前面用struts.convention配置了默認(rèn)包,所以也不用再配置,然后肯定是配置訪問(wèn)的虛擬路勁咯,也就是配置namespace,使用@Namespace(value = "/mail")標(biāo)簽配置,value屬性是配置namespace的路徑。
2.配置好了namespace然后就是action咯,配置這個(gè)是使用@Action(value = "sendMail", results = { @Result(name = SUCCESS, type = "redirect", location = "../News.jsp") })標(biāo)簽,其中value是配置action的路徑,results是配置action的處理結(jié)果跳轉(zhuǎn)頁(yè)面,也可以配置多個(gè)頁(yè)面。
這樣就配置好了一個(gè)完整的action咯,我們現(xiàn)在要和spring整合就必須調(diào)用spring的bean,要調(diào)用bean很簡(jiǎn)單定義一個(gè)私有變量,然后在變量上使用@resource標(biāo)簽就行了,但是需要注意的是這里的變量名必須和后面要講到的@service標(biāo)簽中的名字要一致才行,不然注入不進(jìn)來(lái)。
下面附上一個(gè)例子:
01 | public class ActivityAction extends BaseAction { |
06 | private static final long serialVersionUID = 5488332603981342055L; |
12 | private ActivityService activityService; |
20 | @Action (value = "findActivityList" ) |
21 | public String findActivityList() throws Exception { |
22 | List<ActivityVo> activityVos = activityService.findActivityList(); |
23 | String result = ListToJsonString(activityVos); |
34 | @Action (value = "joinActivity" ) |
35 | public String joinActivity() throws Exception { |
36 | boolean isSucc = activityService.insertActivityForUser(eventId, uid); |
42 | * 根據(jù)用戶(hù)標(biāo)識(shí)查找活動(dòng)列表 |
44 | * @return 我的活動(dòng)列表 |
47 | @Action (value = "findMyActivityList" ) |
48 | public String findMyActivityList() throws Exception { |
49 | List<ActivityVo> activityVos = activityService.findMyActivityList(uid); |
50 | String result = ListToJsonString(activityVos); |
56 | public void setActivityService(ActivityService activityService) { |
57 | this .activityService = activityService; |
60 | public void setUid( long uid) { |
64 | public void setEventId( long eventId) { |
65 | this .eventId = eventId; |
然后來(lái)講講service的配置,配置方法是使用@service(value="serviceName")標(biāo)簽設(shè)置service,很簡(jiǎn)單不用多講,而且調(diào)用dao的時(shí)候和action調(diào)用service一樣使用@resource標(biāo)簽引入屬性就行了,下面是例子源碼:
01 | @Service (value = "activityService" ) |
02 | public class ActivityServiceImpl implements ActivityService { |
05 | ActivityDao activityDao; |
07 | private DateFormat df = new SimpleDateFormat( "yyyy-MM-dd HH:mm:ss" ); |
10 | public boolean insertActivityForUser( long eventId, long uid) { |
11 | return activityDao.insertActivityForUser(eventId, uid); |
15 | public List<ActivityVo> findActivityList() { |
16 | List<Activity> list = activityDao.findActivityList(); |
17 | List<ActivityVo> activityVos = new ArrayList<ActivityVo>(); |
18 | for (Activity activity : list) { |
19 | ActivityVo activityVo = new ActivityVo(); |
20 | activityVo.setId(activity.getId()); |
21 | activityVo.setTitle(activity.getTitle()); |
22 | activityVo.setPublishTime(df.format(activity.getPublishTime())); |
23 | activityVo.setImagurl(activity.getImagurl()); |
24 | activityVo.setContent(activity.getContent()); |
25 | activityVos.add(activityVo); |
31 | public List<ActivityVo> findMyActivityList( long uid) { |
32 | List<Activity> list = activityDao.findMyActivityList(uid); |
33 | List<ActivityVo> activityVos = new ArrayList<ActivityVo>(); |
34 | for (Activity activity : list) { |
35 | ActivityVo activityVo = new ActivityVo(); |
36 | activityVo.setId(activity.getId()); |
37 | activityVo.setTitle(activity.getTitle()); |
38 | activityVo.setPublishTime(df.format(activity.getPublishTime())); |
39 | activityVo.setImagurl(activity.getImagurl()); |
40 | activityVo.setDatetime(activity.getDatetime()); |
41 | activityVo.setDescription(activity.getDescription()); |
42 | activityVo.setContent(activity.getContent()); |
43 | activityVos.add(activityVo); |
然后就是dao的配置和前面的差不多就是定義dao的時(shí)候是用@repository標(biāo)簽,直接貼代碼就行了:
01 | @Repository (value = "activityDao" ) |
02 | public class ActivityDao extends BaseDao<Activity> { |
11 | * @return 成功返回true,失敗返回false |
13 | @SuppressWarnings ( "unchecked" ) |
14 | public boolean insertActivityForUser( long eventId, long uid) { |
15 | Session session = getSession(); |
17 | .createSQLQuery( "select au.aid from activity_users au where au.aid=:aid and au.uid=:uid" ); |
18 | List list = query.setParameter( "uid" , uid).setParameter( "aid" , eventId) |
20 | if (list.size() > 0 ) { |
23 | session.createSQLQuery( |
24 | "insert into activity_users(aid,uid) values(:aid,:uid)" ) |
25 | .setParameter( "uid" , uid).setParameter( "aid" , eventId) |
36 | @SuppressWarnings ( "unchecked" ) |
37 | public List<Activity> findActivityList() { |
38 | Session session = getSession(); |
39 | List<Activity> list = session.createQuery( |
40 | "from Activity where status = 2 order by publishTime desc" ) |
41 | .setMaxResults( 10 ).list(); |
46 | * 根據(jù)用戶(hù)標(biāo)識(shí)查詢(xún)用戶(hù)參加的所有活動(dòng) |
52 | @SuppressWarnings ( "unchecked" ) |
53 | public List<Activity> findMyActivityList( final long uid) { |
54 | return getHibernateTemplate().execute( new HibernateCallback() { |
57 | public Object doInHibernate(Session session) |
58 | throws HibernateException, SQLException { |
59 | List<Activity> list = session |
61 | "select a from Activity a left join a.users u where u.id=:uid order by a.publishTime desc" ) |
62 | .setParameter( "uid" , uid).list(); |
下面是BaseDao的代碼:
01 | public class BaseDao<E> extends HibernateDaoSupport { |
03 | @Resource (name = "sessionFactory" ) |
04 | public void setInjectionSessionFacotry(SessionFactory sessionFacotry) { |
05 | super .setSessionFactory(sessionFacotry); |
09 | public void injectSessionFactory() { |
10 | logger.info( super .getSessionFactory()); |
13 | public Serializable save(E entity) { |
14 | return getHibernateTemplate().save(entity); |
17 | public void update(E entity) { |
18 | getHibernateTemplate().update(entity); |
21 | public void delete(E entity) { |
22 | getHibernateTemplate().delete(entity); |
25 | public User query( long id) { |
26 | return getHibernateTemplate().get(User. class , id); |
在這個(gè)類(lèi)里面注入sessionFactory對(duì)象。
下面來(lái)講講dwr的配置,要配置dwr的遠(yuǎn)程代理對(duì)象在類(lèi)上使用@RemoteProxy類(lèi)中的方法@RemoteMethod這樣在javascript中直接用類(lèi)名+方法名直接調(diào)用就行了。如果要調(diào)用spring的bean和上面一樣,就不不多說(shuō)。如果dwr和jsp頁(yè)面?zhèn)鬏數(shù)臅r(shí)候需要用到j(luò)ava實(shí)體那么就在需要傳輸?shù)膶?shí)體類(lèi)上用@DataTransferObject標(biāo)簽,才能正確轉(zhuǎn)換類(lèi)型,不然會(huì)報(bào)異常。下面是例子:
02 | public class TestDwr implements Serializable { |
07 | private static final long serialVersionUID = -2060851629180328131L; |
10 | public String testDwr() { |
實(shí)體的例子大家可以隨便定義一個(gè)類(lèi)就行了加上標(biāo)簽就OK,這里就不列出來(lái)了。