`
234390216
  • 浏览: 10232095 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
博客专栏
A5ee55b9-a463-3d09-9c78-0c0cf33198cd
Oracle基础
浏览量:462588
Ad26f909-6440-35a9-b4e9-9aea825bd38e
springMVC介绍
浏览量:1775413
Ce363057-ae4d-3ee1-bb46-e7b51a722a4b
Mybatis简介
浏览量:1398299
Bdeb91ad-cf8a-3fe9-942a-3710073b4000
Spring整合JMS
浏览量:394991
5cbbde67-7cd5-313c-95c2-4185389601e7
Ehcache简介
浏览量:679951
Cc1c0708-ccc2-3d20-ba47-d40e04440682
Cas简介
浏览量:530842
51592fc3-854c-34f4-9eff-cb82d993ab3a
Spring Securi...
浏览量:1183866
23e1c30e-ef8c-3702-aa3c-e83277ffca91
Spring基础知识
浏览量:467758
4af1c81c-eb9d-365f-b759-07685a32156e
Spring Aop介绍
浏览量:151360
2f926891-9e7a-3ce2-a074-3acb2aaf2584
JAXB简介
浏览量:68121
社区版块
存档分类
最新评论

一些常用配置文件

阅读更多

applicationContext.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
	xsi:schemaLocation="http://www.springframework.org/schema/beans
         http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
         http://www.springframework.org/schema/context
         http://www.springframework.org/schema/context/spring-context-3.0.xsd
         http://www.springframework.org/schema/tx
         http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
         http://www.springframework.org/schema/aop
         http://www.springframework.org/schema/aop/spring-aop-3.0.xsd">

	<context:annotation-config />
	<context:component-scan base-package="com.tiantian.tiantian" />

	<context:property-placeholder location="classpath:jdbc.properties" />

	<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"
		destroy-method="close">
		<property name="driverClassName" value="${jdbc.driverClassName}" />
		<property name="url" value="${jdbc.url}" />
		<property name="username" value="${jdbc.username}" />
		<property name="password" value="${jdbc.password}" />
	</bean>

	<bean id="sessionFactory"
		class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
		<property name="dataSource" ref="dataSource" />
		<property name="packagesToScan">
			<list>
				<value>com.tiantian.tiantian.model</value>
			</list>
		</property>

		<property name="hibernateProperties">
			<props>
				<prop key="hibernate.dialect">
					org.hibernate.dialect.MySQLDialect
				</prop>
				<prop key="hibernate.show_sql">true</prop>
				<prop key="hibernate.hbm2ddl.auto">update</prop>
			</props>
		</property>
	</bean>

	<bean id="transactionManager"
		class="org.springframework.orm.hibernate3.HibernateTransactionManager">
		<property name="sessionFactory" ref="sessionFactory" />
	</bean>

	<aop:config>
		<aop:pointcut id="productServiceMethods"
			expression="execution(* com.tiantian.tiantian..*.*(..))" />
		<aop:advisor advice-ref="txAdvice" pointcut-ref="productServiceMethods" />
	</aop:config>

	<tx:advice id="txAdvice" transaction-manager="transactionManager">
		<tx:attributes>
			<tx:method name="add*" propagation="REQUIRED" />
			<tx:method name="update*" propagation="REQUIRED" />
			<tx:method name="del*" propagation="REQUIRED"/>
			<tx:method name="*" propagation="SUPPORTS" read-only="true" />
		</tx:attributes>
	</tx:advice>

	<bean id="hibernateTemplate" class="org.springframework.orm.hibernate3.HibernateTemplate">
		<property name="sessionFactory" ref="sessionFactory" />
	</bean>

</beans>

 

struts.xml

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
    "http://struts.apache.org/dtds/struts-2.0.dtd">

<struts>

	<constant name="struts.devMode" value="false" />
	<constant name="struts.enable.SlashesInActionNames" value="true" />
	<constant name="struts.mapper.alwaysSelectFullNamespace"
		value="false" />

	<package name="default" namespace="/" extends="struts-default">
		<interceptors>
			<interceptor name="authentication" class="com.tiantian.tiantian.web.interceptor.AuthenticationInterceptor"></interceptor>
			<interceptor-stack name="myInterceptorStack">
				<interceptor-ref name="authentication"></interceptor-ref>
				<interceptor-ref name="defaultStack"></interceptor-ref>
			</interceptor-stack>
		</interceptors>
		<default-interceptor-ref name="myInterceptorStack"/>
				<default-action-ref name="mydefault"/>
		
		<global-results>
			<result name="forbidden">/WEB-INF/forbidden.jsp</result>
			<result name="Exception">/WEB-INF/error.jsp</result>
		</global-results>
		
		<global-exception-mappings>
			<exception-mapping result="Exception" exception="java.lang.Exception"></exception-mapping>
		</global-exception-mappings>
		
		<action name="mydefault">
			<result type="redirect">/</result>
		</action> <!-- 当输入的地址不存在的时候就转到主页 -->
		 
	</package>

	<!-- Add packages here -->

</struts>

 web.xml

<?xml version="1.0" encoding="UTF-8"?>
<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.sun.com/xml/ns/javaee 
	http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
	<welcome-file-list>
		<welcome-file>index.jsp</welcome-file>
	</welcome-file-list>
 
<!--	<error-page>-->
<!--		<error-code>404</error-code>-->
<!--		<location>/404.jsp</location>-->
<!--	</error-page>-->
<!--	<error-page>-->
<!--		<error-code>500</error-code>-->
<!--		<location>/500.jsp</location>-->
<!--	</error-page> -->
	<context-param>
		<param-name>contextConfigLocation</param-name>
		<param-value>/WEB-INF/applicationContext*.xml</param-value>
	</context-param>

	<listener>
		<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
	</listener>
	<servlet>
		<servlet-name>dwr</servlet-name>
		<servlet-class>org.directwebremoting.servlet.DwrServlet</servlet-class>
		<init-param>
			<param-name>crossDomainSessionSecurity</param-name>
			<param-value>false</param-value>
		</init-param>
	</servlet>
	<servlet-mapping>
		<servlet-name>dwr</servlet-name>
		<url-pattern>/dwr/*</url-pattern>
	</servlet-mapping>
	<filter>
		<filter-name>encodingFilter</filter-name>
		<filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
		<init-param>
			<param-name>encoding</param-name>
			<param-value>GBK</param-value>
		</init-param>
	</filter>

	<filter-mapping>
		<filter-name>encodingFilter</filter-name>
		<url-pattern>/*</url-pattern>
	</filter-mapping>

	<filter>
		<filter-name>openSessionInView</filter-name>
		<filter-class>org.springframework.orm.hibernate3.support.OpenSessionInViewFilter</filter-class>
	</filter>
	<filter-mapping>
		<filter-name>openSessionInView</filter-name>
		<url-pattern>/*</url-pattern>
	</filter-mapping>

	
	<filter>
		<filter-name>servletFilter</filter-name>
		<filter-class>com.tiantian.tiantian.web.filter.ServletFilter</filter-class>
		<init-param>
			<param-name>targets</param-name>
			<param-value>LogoutServlet</param-value>
		</init-param>
	</filter>
	<filter-mapping>
		<filter-name>servletFilter</filter-name>
		<url-pattern>/*</url-pattern>
	</filter-mapping>
	
	<filter>
		<filter-name>struts2</filter-name>
		<filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
	</filter>

	<filter-mapping>
		<filter-name>struts2</filter-name>
		<url-pattern>/*</url-pattern>
	</filter-mapping>
</web-app>

 

分享到:
评论

相关推荐

    Linux 中的一些常用配置文件及其功能

    在深入探讨Linux中一些关键配置文件及其功能之前,我们先简要回顾一下Linux操作系统的特点,尤其是它对配置的灵活性和自定义能力。Linux系统通过文本文件进行大部分的配置,这使得用户可以根据自己的需求精确地调整...

    常用mysql数据库配置文件

    常用mysql数据库配置文件常用mysql数据库配置文件常用mysql数据库配置文件常用mysql数据库配置文件常用mysql数据库配置文件常用mysql数据库配置文件常用mysql数据库配置文件常用mysql数据库配置文件常用mysql数据库...

    Linux常用配置文件及常用命令

    Linux常用配置文件及常用命令 Linux是一个功能强大且灵活的操作系统,它提供了许多配置文件和命令来帮助用户管理和维护系统。在本节中,我们将介绍一些常用的Linux配置文件和命令,帮助用户更好地理解和掌握Linux...

    PTC Creoc常用配置文件

    资源描述:本文件为creo常用配置文件。详细表述见https://blog.csdn.net/qq_39979317/article/details/107569930 使用方法:下载此文件,替换安装目录D:\Creo6.0\PTC\Creo 6.0.0.0\Common Files\text目录下的config....

    ssm常用配置文件

    在这个“ssm常用配置文件”压缩包中,我们通常会找到以下几个关键的配置文件,它们对于理解和构建一个SSM项目至关重要。 1. **spring配置文件**: - `applicationContext.xml`:这是Spring框架的核心配置文件,...

    vim常用配置文件下载

    我自己的vim配置文件,包括常用的代码不全,git提示,nerdtree,taglist等。 复制到根目录下重命名为.vimrc

    OpenGL的常用配置文件

    本篇文章将详细介绍OpenGL的常用配置文件,以及如何解决配置过程中的常见问题。 首先,我们来看看压缩包中的文件: 1. **glaux.dll**:这是一个辅助库,提供了用于OpenGL的一些便利函数。Gluaux库主要包含了一些...

    JAVAWEB各种配置文件加常用操作

    JAVAWEB各种配置文件加常用操作(spring strut2 jpa hibernate jdbc jndi springMVC velocity ant log4j ehcache等各种配置文件及常用操作),相信对你的开发一定会有很大的帮助!

    Creo个人习惯设置好的配置文件

    Creo个人习惯设置好的配置文件

    rhel服务器常用配置与配置文件

    主要包括red hat enterprise linux服务器常用配置与配置文件范本,配置的ppt课件,以及swf格式的测试题(有答案)。

    JFlash离线烧录文件及常用芯片的烧录配置文件

    对于“常用芯片的烧录配置文件路径:SEGGER.rar\SEGGER\JLink\tools”,这个路径揭示了配置文件的存放位置。用户可以通过解压SEGGER.rar文件,进入SEGGER\JLink\tools目录,找到对应芯片的配置文件。这些配置文件...

    开发中常用jsp配置文件

    ### 标题:“开发中常用jsp配置文件” 该标题简明扼要地指出了本文档的主要内容:介绍在实际项目开发过程中经常使用的JSP配置文件。这表明文档将涵盖一些重要的JSP配置细节和技术要点,对于初学者和有经验的开发者...

    ssh整合的常用配置文件,包括所有配置文件,需要的童鞋进行下载。

    这些配置文件在Java开发中扮演着关键角色,帮助开发者管理应用程序的各个层面,包括模型、视图、控制器、依赖注入、持久化和日志记录等。下面我们将详细探讨这些配置文件的作用和内容。 1. **hibernate.cfg.xml**:...

    emacs常用配置文件,包括 行号显示、载入 主题、 org-mode常用配置

    emacs常用配置文件,包括 行号显示、载入 主题、 org-mode常用配置。下载后请放到 ~主目录下即可,或者自己新建一个.emacs,用记事本打开拷过去。

    配置文件jar包

    1. **application.properties** 或 **application.yml**:Spring Boot框架中常用的配置文件,用于存储应用的全局配置。 2. **web.xml**:在传统的Java EE应用中,这是Web应用的部署描述符,定义了Servlet、过滤器和...

    常用的一些开发配置文件.7z

    常用的一些开发配置文件.7z

    MyEclipse常用配置文件

    导入MyEclipse后即可~~方便重新安装MyEclipse的朋友使用

    vim配置文件

    `vim配置文件`是个人化Vim环境的关键,它允许用户根据自己的需求调整编辑器的行为,提高编程效率。在Vim中,配置文件通常是名为`.vimrc`的文本文件,位于用户的主目录下。 `ctags`和`cscope`是两个非常有用的辅助...

    sourceinsight4 风格配置文件

    **SourceInsight 4 风格配置文件详解** SourceInsight 4 是一款深受程序员喜爱的源代码分析和编辑工具,它提供了强大的代码浏览、查找、跳转和编辑功能。在SourceInsight中,用户可以根据个人喜好和工作需求定制...

    Nginx的常用配置文件

    Nginx的常用配置文件,适合负载均衡设置等

Global site tag (gtag.js) - Google Analytics