维护文档
parent
4abb771154
commit
aadae46a4a
43
README.md
43
README.md
|
@ -3,6 +3,7 @@
|
|||
> 当前项目用于有兴趣一起协同开发的同事一起使用
|
||||
>
|
||||
> @author youHong.ai
|
||||
> 维护人员:youHong.ai xuanRan.wang
|
||||
|
||||
**开发文档见[开发文档](开发文档.md)**
|
||||
**其他信息可在[常用信息](常用信息.md)查看**
|
||||
|
@ -95,18 +96,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">
|
||||
<beans>
|
||||
<<<<<<< HEAD
|
||||
<bean id="propertyPlaceholderConfigurer"
|
||||
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
|
||||
<property name="locations" value="classpath:application.properties"/>
|
||||
</bean>
|
||||
<bean id="basetest" class="basetest.BaseTestConfig">
|
||||
<property name="serverName" value="${serverName}"/>
|
||||
<property name="rootPath" value="${rootPath}"/>
|
||||
<property name="systemFilePath" value="${systemFilePath}"/>
|
||||
<property name="logPath" value="${logPath}"/>
|
||||
</bean>
|
||||
=======
|
||||
<
|
||||
<
|
||||
<
|
||||
<
|
||||
<
|
||||
<
|
||||
< HEAD
|
||||
<bean id="propertyPlaceholderConfigurer"
|
||||
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
|
||||
<property name="locations" value="classpath:application.properties"/>
|
||||
|
@ -117,7 +113,18 @@
|
|||
<property name="systemFilePath" value="${systemFilePath}"/>
|
||||
<property name="logPath" value="${logPath}"/>
|
||||
</bean>
|
||||
>>>>>>> a01b7872c839238409568119a0d0980f3a799c4d
|
||||
=======
|
||||
<bean id="propertyPlaceholderConfigurer"
|
||||
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
|
||||
<property name="locations" value="classpath:application.properties"/>
|
||||
</bean>
|
||||
<bean id="basetest" class="basetest.BaseTestConfig">
|
||||
<property name="serverName" value="${serverName}"/>
|
||||
<property name="rootPath" value="${rootPath}"/>
|
||||
<property name="systemFilePath" value="${systemFilePath}"/>
|
||||
<property name="logPath" value="${logPath}"/>
|
||||
</bean>
|
||||
>>>>>>> a01b7872c839238409568119a0d0980f3a799c4d
|
||||
</beans>
|
||||
```
|
||||
|
||||
|
@ -177,4 +184,12 @@ jar -cvf ecology-dev-lib.jar com DBstep weaver
|
|||
jar -cvf web-inf-class-lib.jar com weaver org
|
||||
```
|
||||
|
||||
将生成的jar包替换掉原来的jar包即可
|
||||
将生成的jar包替换掉原来的jar包即可
|
||||
|
||||
## 入门开发
|
||||
|
||||
**[快速入门开发文档](快速入门开发.md)**
|
||||
快速上手后端开发,如何编写action、如何编写restful接口、如何编写定时任务等
|
||||
|
||||
**[进阶开发文档](进阶开发文档.md)**
|
||||
应对更加复杂的开发需求,发送请求、操作系统存储文件、建模权限等
|
17
常用信息.md
17
常用信息.md
|
@ -1,4 +1,19 @@
|
|||
# 常用的数据信息
|
||||
|
||||
## 其他
|
||||
|
||||
> 维护人员: youhong.ai
|
||||
|
||||
+ 缓存地址: `/commcache/cacheMonitor.jsp`
|
||||
+ 移动端流程模拟地址: `/spa/workflow/static4mobile/index.html#/center/doing`
|
||||
+ 移动端流程模拟地址: `/spa/workflow/static4mobile/index.html#/center/doing`
|
||||
|
||||
## 常用代码
|
||||
|
||||
### 前端
|
||||
|
||||
**获取用户信息**
|
||||
> 维护人员:youhong.ai
|
||||
|
||||
```javascript
|
||||
const userInfo = JSON.parse(localStorage.getItem("theme-account"))
|
||||
```
|
|
@ -0,0 +1,29 @@
|
|||
# 快速入门开发文档
|
||||
|
||||
> @author: youhong.ai
|
||||
> <br>维护人员: EBU7部开发部
|
||||
|
||||
## 后端开发
|
||||
|
||||
### 第一个action
|
||||
|
||||
> 维护人员:
|
||||
|
||||
### 第一个定时任务
|
||||
|
||||
> 维护人员:
|
||||
|
||||
### 第一个restful接口
|
||||
|
||||
> 维护人员:
|
||||
|
||||
### 如何操作数据库
|
||||
|
||||
> 维护人员:
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue