

emr_demo
@ 4
emr_demo / web_emr - Copy / src / main / resources / application.properties
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 |
server.port=5285 #spring.mvc.view.prefix=/WEB-INF/ #spring.mvc.view.suffix=.jsp #debug=true spring.jackson.serialization.INDENT_OUTPUT=true spring.h2.console.enabled=true spring.datasource.url=jdbc:mysql://localhost:3306/test_new?createDatabaseIfNotExist=true spring.datasource.driverClassName=com.mysql.jdbc.Driver spring.datasource.username=root spring.datasource.password=admin spring.jpa.database-platform=org.hibernate.dialect.H2Dialect spring.jpa.show-sql = true spring.jpa.generate-ddl=true spring.jpa.hibernate.ddl-auto = update spring.jpa.hibernate.naming-strategy = org.hibernate.cfg.ImprovedNamingStrategy spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.MySQL5Dialect jwt.header=Authorization jwt.secret=mySecret jwt.expiration=604800 jwt.route.authentication.path=/auth jwt.route.registration.path=/registration jwt.route.userupdate.path=/user/update/{id} jwt.route.userdelete.path=/user/delete/{id} jwt.route.userrole.path=/user/role/create jwt.route.getuser.path=/user/getuser/{id} jwt.route.user.department.path=/department/create jwt.route.departmentupdate.path=/department/update/{id} jwt.route.departmentdelete.path=/department/delete/{id} jwt.route.departmentsearch.path=/department/search jwt.route.user.speciality.path=/speciality/create jwt.route.specialityupdate.path=/speciality/update/{id} jwt.route.specialitydelete.path=/speciality/delete/{id} jwt.route.specialitysearch.path=/speciality/search jwt.route.user.pharmacy.path=/pharmacy/create jwt.route.pharmacyupdate.path=/pharmacy/update/{id} jwt.route.pharmacydelete.path=/pharmacy/delete/{id} jwt.route.pharmacysearch.path=/pharmacy/search jwt.route.user.lab.path=/lab/create jwt.route.labupdate.path=/lab/update/{id} jwt.route.labdelete.path=/lab/delete/{id} jwt.route.labsearch.path=/lab/search jwt.route.user.expenditure.path=/expenditure/create jwt.route.expenditureupdate.path=/expenditure/update/{id} jwt.route.expendituredelete.path=/expenditure/delete/{id} jwt.route.expendituresearch.path=/expenditure/search jwt.route.userrolepermission.path=/user/role/permission jwt.route.facilitysetup.path=/specialitymaster jwt.route.patientregistration.path=/patient/registration jwt.route.authentication.refresh=/refresh |