Common Profile-SSH-2

Source: Internet
Author: User

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"><context-param>     <param-name>contextConfigLocation</param-name>     <param-value>classpath*:applicationContext.xml</param-value>  </context-param> <listener>    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>  </listener> <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>  <welcome-file-list>    <welcome-file>index.jsp</welcome-file>  </welcome-file-list></web-app>

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.objectFactory" value="spring" />    <package name="default" namespace="/" extends="struts-default">    <action name="userAction" class="userAction"  >    <result name="success"></result>    </action>    </package></struts>

Applicationcontext. xml

<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"xmlns:context="http://www.springframework.org/schema/context"xsi:schemaLocation="http://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans-2.5.xsdhttp://www.springframework.org/schema/aophttp://www.springframework.org/schema/aop/spring-aop-2.5.xsdhttp://www.springframework.org/schema/contexthttp://www.springframework.org/schema/context/spring-context-2.5.xsd"><bean id="dataSource"              class="org.apache.commons.dbcp.BasicDataSource">              <property name="driverClassName"                  value="com.mysql.jdbc.Driver">              </property>              <property name="url" value="jdbc:mysql://192.168.199.153:3306/hibernate"></property>              <property name="username" value="root"></property>              <property name="password" value="root"></property>    </bean>  <bean  id="sessionFactory"  class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"><property name="dataSource"  ref="dataSource" ></property><property name="hibernateProperties"  ><props><prop key="hibernate.dialect" >org.hibernate.dialect.MySQLDialect</prop><prop key="hibernate.hbm2ddl.auto">update</prop><prop key="hibernate.show_sql">true</prop></props></property><property name="mappingResources">       <list>       <value>com/snow/po/User.hbm.xml</value>       </list>        </property></bean><bean id="userDao" class="com.snow.dao.impl.UserDaoImpl" ><property name="factory" ref="sessionFactory" ></property></bean><bean id="userAction"  class="com.snow.action.UserAction"  scope="prototype" ><property name="userDao" ref="userDao" ></property></bean></beans>

If you submit an object to ICO for management. Use new with caution

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.