del-code nl-104 ol-104"> 104
105
	<bean id="uspaDataSource" class="org.apache.commons.dbcp.BasicDataSource"
106
		destroy-method="close">
107
		<property name="driverClassName" value="${uspa.jdbc.driverClassName}" />
108
		<property name="url" value="${uspa.jdbc.url}" />
109
		<property name="username" value="${uspa.jdbc.username}" />
110
		<property name="password" value="${uspa.jdbc.password}" />
111
		<property name="initialSize" value="${uspa.jdbc.initialSize}"></property>
112
		<property name="maxActive" value="${uspa.jdbc.maxActive}"></property>
113
		<property name="maxIdle" value="${uspa.jdbc.maxIdle}"></property>
114
		<property name="maxWait" value="${uspa.jdbc.maxWait}"></property>
115
		<property name="defaultAutoCommit" value="${uspa.jdbc.defaultAutoCommit}"></property>
116
		<property name="timeBetweenEvictionRunsMillis" value="${uspa.jdbc.timeBetweenEvictionRunsMillis}"></property>
117
		<property name="minEvictableIdleTimeMillis" value="${uspa.jdbc.minEvictableIdleTimeMillis}" />
118
		<property name="validationQuery" value="${uspa.jdbc.validationQuery}" />
119
		<property name="testOnBorrow" value="${uspa.jdbc.testOnBorrow}" />
120
		<property name="validationQueryTimeout" value="${uspa.jdbc.validationQueryTimeout}" />
121
	</bean>
122
123
	<bean id="sessionFactory"
124
		class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
125
		<property name="dataSource" ref="uspaDataSource"></property>
126
		<property name="hibernateProperties">
127
			<props>
128
				<prop key="hibernate.dialect">${uspa.hibernate.dialect}</prop>
129
				<prop key="hibernate.show_sql">${uspa.hibernate.show_sql}</prop>
130
				<prop key="hibernate.format_sql">${uspa.hibernate.format_sql}</prop>
131
				<prop key="hibernate.current_session_context_class">
132
					org.springframework.orm.hibernate4.SpringSessionContext
133
				</prop>
134
				<prop key="hibernate.autoReconnect">${uspa.hibernate.autoReconnect}</prop>
135
				<prop key="hibernate.connection.autocommit">true</prop>
136
				<prop key="hibernate.jdbc.batch_size">${uspa.hibernate.jdbc.batch_size}</prop>
137
				<prop key="hibernate.jdbc.fetch_size">${uspa.hibernate.jdbc.fetch_size}</prop>
138
				<!--<prop key="hibernate.hbm2ddl.auto">${uspa.hibernate.hbm2ddl.auto}</prop>-->
139
				<prop key="hibernate.cache.use_second_level_cache">${uspa.hibernate.cache.use_second_level_cache}</prop>
140
			</props>
141
		</property>
142
		<property name="packagesToScan">
143
			<list>
144
				<value>com.ai.aif.uspa.domain</value>
145
			</list>
146
		</property>
147
	</bean>
148
149
	<!-- redis -->
150
	<bean id="poolConfig" class="redis.clients.jedis.JedisPoolConfig">
151
		<property name="maxIdle" value="${redis.maxIdle}" />
152
		<property name="minIdle" value="${redis.minIdle}" />
153
		<property name="maxTotal" value="${redis.maxTotal}"/>
154
		<property name="testOnBorrow" value="${redis.testOnBorrow}"/>
155
		<property name="maxWaitMillis" value="${redis.maxWaitMillis}"/>
156
		<property name="testOnReturn" value="${redis.testOnReturn}" />
157
	</bean>
158
159
	<bean id="jedisConnectionFactory" class="org.springframework.data.redis.connection.jedis.JedisConnectionFactory">
160
		<property name="usePool" value="true"/>
161
		<property name="hostName" value="${redis.host}" />
162
		<property name="port" value="${redis.port}" />
163
		<property name="timeout" value="${redis.timeout}" />
164
		<property name="poolConfig" ref="poolConfig"/>
165
	</bean>
166
167
	<bean id="redisTemplate" class="org.springframework.data.redis.core.RedisTemplate">
168
		<property name="connectionFactory" ref="jedisConnectionFactory"/>
169
		<property name="keySerializer"><bean class="org.springframework.data.redis.serializer.StringRedisSerializer"/></property>
170
		<property name="valueSerializer"><bean class="org.springframework.data.redis.serializer.JdkSerializationRedisSerializer"/></property>
171
	</bean>
172
	<!-- redis -->
173
174
	<!-- swagger start -->
175
<!--
176
	<mvc:resources mapping="swagger-ui.html" location="classpath:/META-INF/resources/" />
177
	<mvc:resources mapping="/webjars/**"
178
		location="classpath:/META-INF/resources/webjars/" />
179
-->
180
181
	<!-- swagger end -->
182
</beans>

common-ui - Nuosi Git Service

AIoT前端公共UI

liuyang c2cf9331e4 add: 新增antv-x6组件模块,目前只支持上图下文字模式,后续会扩展 2 年 前
.vscode b53d9d73ad create: 创建common-ui工程 2 年 前
docs d9cf586b9b update: 修改图片位置 2 年 前
examples c2cf9331e4 add: 新增antv-x6组件模块,目前只支持上图下文字模式,后续会扩展 2 年 前
lib 078f8b3015 update: 修改使用中的细节 2 年 前
packages c2cf9331e4 add: 新增antv-x6组件模块,目前只支持上图下文字模式,后续会扩展 2 年 前
.eslintignore.js b53d9d73ad create: 创建common-ui工程 2 年 前
.eslintrc b53d9d73ad create: 创建common-ui工程 2 年 前
.gitignore ae7c7c9fa5 update: 修改配置信息 2 年 前
.gitignore copy b53d9d73ad create: 创建common-ui工程 2 年 前
.prettierrc b53d9d73ad create: 创建common-ui工程 2 年 前
INFO.md b53d9d73ad create: 创建common-ui工程 2 年 前
README.md 495d3fe273 fixed: 修改表格插件 + 修改svg-icon为common-icon 2 年 前
auto-imports.d.ts b53d9d73ad create: 创建common-ui工程 2 年 前
components.d.ts 078f8b3015 update: 修改使用中的细节 2 年 前
index.html b53d9d73ad create: 创建common-ui工程 2 年 前
package.json c2cf9331e4 add: 新增antv-x6组件模块,目前只支持上图下文字模式,后续会扩展 2 年 前
pnpm-lock.yaml c2cf9331e4 add: 新增antv-x6组件模块,目前只支持上图下文字模式,后续会扩展 2 年 前
tsconfig.json b53d9d73ad create: 创建common-ui工程 2 年 前
tsconfig.node.json b53d9d73ad create: 创建common-ui工程 2 年 前
vite.config.ts b53d9d73ad create: 创建common-ui工程 2 年 前
开发规范.md b53d9d73ad create: 创建common-ui工程 2 年 前

README.md

Vue 3 + TypeScript + Vite

This template should help get you started developing with Vue 3 and TypeScript in Vite. The template uses Vue 3 <script setup> SFCs, check out the script setup docs to learn more.

Recommended IDE Setup

Type Support For .vue Imports in TS

TypeScript cannot handle type information for .vue imports by default, so we replace the tsc CLI with vue-tsc for type checking. In editors, we need TypeScript Vue Plugin (Volar) to make the TypeScript language service aware of .vue types.

If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a Take Over Mode that is more performant. You can enable it by the following steps:

  1. Disable the built-in TypeScript Extension
    1. Run Extensions: Show Built-in Extensions from VSCode's command palette
    2. Find TypeScript and JavaScript Language Features, right click and select Disable (Workspace)
  2. Reload the VSCode window by running Developer: Reload Window from the command palette.

快速上手

common-ui 基于 vue3 + ts + Element-plus 再次封装的基础组件

安装

npm install common-module-ui
&
yarn add common-module-ui -S

使用

// main.ts
import CommonUI from 'common-module-ui'
import 'common-module-ui/lib/style.css'
const app = createApp(App)
app.use(CommonUI)
app.mount('#app')

文档详见:http://123.57.35.51:18087/components/info/base.html