Subversion Repository Public Repository

Satyam

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?xml version="1.0" encoding="UTF-8"?>
<!--
To change this template, choose Tools | Templates
and open the template in the editor.
-->
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:c="http://www.springframework.org/schema/c"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd" >

<context:component-scan base-package="com.bestray.labinformationsystem">
    <context:include-filter type="regex" 
                       expression="com.bestray.labinformationsystem.controller.*" />
    <context:include-filter type="regex" 
                       expression="com.bestray.labinformationsystem.serviceimpl.*" />
    <context:include-filter type="regex" 
                       expression="com.bestray.labinformationsystem.daoimpl.*" />
</context:component-scan > 

 <!-- DAO Classes
<bean id="labInformationDao" class="com.bestray.labinformationsystem.daoimpl.LabInformationDaoImpl" 
      p:sessionFactory-ref="sessionFactory"/>-->



<!-- Service Classes 
<bean id="labInformationService" class="com.bestray.labinformationsystem.serviceimpl.LabInformationServiceImpl" 
      c:_0-ref="labInformationDao"/>-->


<!-- Controller Classes 
<bean id="labCodeValuesController" class="com.bestray.labinformationsystem.controller.LabCodeValueController" 
      c:_0-ref="codeValuesService"/>
<bean id="labInformationController" class="com.bestray.labinformationsystem.controller.LabInformationController" 
      c:_0-ref="labInformationService"
      c:_1-ref="orderSpecimenCollectionService"/>
<bean id="labPatientController" class="com.bestray.labinformationsystem.controller.LabPatientController" 
      c:_0-ref="patientService"/>
<bean id="labReportController" class="com.bestray.labinformationsystem.controller.LabReportController" 
      c:_0-ref="procedureMasterService"/>
<bean id="orderChoiceController" class="com.bestray.labinformationsystem.controller.OrderChoiceController" 
      c:_0-ref="procedureMasterService"
      c:_1-ref="componentMasterService"/>
<bean id="orderResultController" class="com.bestray.labinformationsystem.controller.OrderResultController" 
      c:_0-ref="orderResultService"/>-->

</beans>

Commits for Satyam/AuroCareEMR/src/main/resources/labInformationBeans.xml

Diff revisions: vs.
Revision Author Commited Message
1 girijabapi picture girijabapi Fri 20 Jul, 2018 05:59:17 +0000