Automatic replenishment JSP online information system

Automatic replenishment system (CRP) is a use of sales information, orders via EDI connection concept partners must have good interaction between partners, and use of electronic information exchange, etc. to provide information to the upstream and downstream. That CRP is an inventory management program, based on sales information and inventory control, as the market demand forecasting and inventory replenishment solutions, and get the consumer demand for information from the sales information, suppliers can more effectively plan, faster the reaction to market changes and customer needs, so CRP can be used as reducing inventory levels, improve inventory turns, and then maintain optimal inventory levels, and wholesalers and suppliers to share critical information both sides can improve demand forecasting, replenishment planning, promotion management and transport load planning and so on. Automatic replenishment system enables suppliers for all its categories of goods and the supply of inventory at the point of sale of its well known to automatically track each point of sale replenish supply, the supplier to improve the delivery of flexibility and predictability , that is, from suppliers retail inventory management, retail stores and assume responsibility for all product positioning, retailers greatly reduce the retail cost. The system uses SpringMVC + HIbernate frame, front JQUERY AJAX technology employed, using MySQL database development. The system design process in full accordance with the requirements of software engineering, divided into the following steps: First, a feasibility study; the second step a detailed survey, demand analysis; The third step is the overall system design, complete system required database design; the fourth step detailed system design, software coding and final system testing.

Once the bulk purchase of a commodity, the commodity will encourage manufacturers to produce such a large number of goods, but also make up the fast flow of goods in the supply chain. With the further improvement of supply chain management, retail replenishment to the responsibility, and now from the retailer to the manufacturer or wholesaler who. For manufacturers and suppliers, the zero grasp store sales and inventory, better good production planning, procurement planning and delivery program, which is a mutual business ecosystem.

 

<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">

<property name="driverClassName" VALUE="com.mysql.jdbc.Driver">

</property>

<property name="url" VALUE="jdbc:mysql://localhost/shop"></property>

<property name="username" VALUE="root"></property>

<property name="password" VALUE="root"></property>

</bean>

<bean id="sessionFactory"

class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">

<property name="dataSource">

<REF bean="dataSource" />

</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>

<prop KEY="hibernate.cache.provider_class">org.hibernate.cache.EhCacheProvider</prop>

<prop KEY="hibernate.current_session_context_class">thread</prop>

</props>

</property>

 

<property name="annotatedClasses">

<list>

<value>com.shop.Model.ShopUser</value>

<value>com.shop.Model.Goods</value>

<value>com.shop.Model.Items</value>

<value>com.shop.Model.ShopOrder</value>

<value>com.shop.Model.Shop</value>

<value>com.shop.Model.Store</value>

<value>com.shop.Model.Supplier</value>

</list>

</property>

</bean>

<!-- 事务管理器 -->

<bean id="transactionManager"

class="org.springframework.orm.hibernate3.HibernateTransactionManager">

<property name="sessionFactory">

<REF bean="sessionFactory" />

</property>

</bean>
 

 

Guess you like

Origin www.cnblogs.com/xxsnn/p/11613574.html