Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
H
hel-developer-guide
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
hel-guide
hel-developer-guide
Commits
3cbe074b
Commit
3cbe074b
authored
Jul 30, 2017
by
zihao21
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Creates assets/disable_autoreload_1.png
Auto commit by GitBook Editor
parent
e3ac8686
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
151 additions
and
1 deletion
+151
-1
disable_autoreload_1.png
assets/disable_autoreload_1.png
+0
-0
disable_autoreload_all.png
assets/disable_autoreload_all.png
+0
-0
deployment.md
后端开发/deployment.md
+150
-0
融租易开发手册.md
融租易开发手册.md
+1
-1
No files found.
assets/disable_autoreload_1.png
0 → 100644
View file @
3cbe074b
32.6 KB
assets/disable_autoreload_all.png
0 → 100644
View file @
3cbe074b
61.1 KB
后端开发/deployment.md
0 → 100644
View file @
3cbe074b
# 部署
# tomcat
<a
href=
"#tomcat"
></a>
### 1. 关闭 eclipse server `Auto Reload` 特性
*
禁用默认值
<img
src=
"assets/disable_autoreload_all.png"
width=
"50%"
/>
*
单独禁用项
<img
src=
"assets/disable_autoreload_1.png"
width=
"50%"
/>
*
建议关闭 jar 扫描, 提高启动速度, 减少内存占用 , 修改
`catalina.properties `
```
properties
tomcat.util.scan.StandardJarScanFilter.jarsToSkip
=
*.jar
```
### 2. 内存设置
*
Linux 修改
`catalina.sh`
,开始处添加
```
bash
JAVA_OPTS
=
'-Xms512m -Xmx2048m'
```
*
Windows 修改
`
catalina.bat
`
```
bash
set
JAVA_OPTS
=
-Xms512m
-Xmx2048m
```
### 3. 启用远程 JMX 连接
修改 catalina.sh , 搜索
`
[
"
$1
"
=
"start"
]
`
, 在下方添加
```
bash
JAVA_OPTS="-Dcom.sun.management.jmxremote
\
-Dcom.sun.management.jmxremote.port=1099
\
-Djava.rmi.server.hostname=192.168.1.111
\
-Dcom.sun.management.jmxremote.ssl=false
\
-Dcom.sun.management.jmxremote.authenticate=false $JAVA_OPTS"
```
> linux 系统可以用 `` `hostname -i` `` 获取 ip
# Weblogic
<a href="#weblogic"></a>
>感谢融资租赁事业部的技术小伙伴协助!
weblogic 上的部署有些特殊,主要注意以下几点:
> **以下设置仅仅针对 weblogic 12 版本,其他版本可能存在通配符等问题**
### 1. JNDI 数据源
weblogic 上定义好数据源后,在 `config.properties` 中需要修改 jndi 的名字
```
properties
db.jndiName=hap_dev
```
> tomcat 中是 java:comp/env/jdbc/hap_dev,这点不一样
### 2. jar 冲突问题
weblogic 上的一些 jar 和框架中的存在冲突,需要排除掉。
修改项目中的 `pom.xml`,留意注释下的配置
```
xml
<dependency>
<groupId>
com.hand
</groupId>
<artifactId>
hap
</artifactId>
<type>
war
</type>
<version>
${hap.version}
</version>
<!--排除 jar -->
<exclusions>
<exclusion>
<groupId>
com.google.guava
</groupId>
<artifactId>
guava
</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>
com.hand
</groupId>
<artifactId>
hap
</artifactId>
<version>
${hap.version}
</version>
<classifier>
classes
</classifier>
<scope>
provided
</scope>
<!--排除 jar -->
<exclusions>
<exclusion>
<groupId>
com.google.guava
</groupId>
<artifactId>
guava
</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>
com.hand
</groupId>
<artifactId>
hap-db
</artifactId>
<version>
${hap.version}
</version>
<!--排除 jar -->
<exclusions>
<exclusion>
<groupId>
com.google.guava
</groupId>
<artifactId>
guava
</artifactId>
</exclusion>
</exclusions>
</dependency>
...
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-war-plugin
</artifactId>
<version>
2.6
</version>
<configuration>
<attachClasses>
true
</attachClasses>
<overlays>
<overlay>
<groupId>
com.hand
</groupId>
<artifactId>
hap
</artifactId>
<!--排除 jar -->
<excludes>
<exclude>
WEB-INF/lib/guava-15.0.jar
</exclude>
<exclude>
WEB-INF/lib/stax-api-1.0.1.jar
</exclude>
<exclude>
WEB-INF/lib/xercesImpl-2.10.0.jar
</exclude>
<exclude>
WEB-INF/lib/xml-apis-1.3.04.jar
</exclude>
<exclude>
WEB-INF/lib/xml-apis-ext-1.3.04.jar
</exclude>
</excludes>
</overlay>
</overlays>
</configuration>
</plugin>
```
打包后确保 lib 目录不存在上述 6 个 jar。
### 3. 新增 weblogic.xml
在 WEB-INF 目录下新增 weblogic.xml
```
xml
<?xml version="1.0" encoding="UTF-8"?>
<weblogic-web-app>
<container-descriptor>
<prefer-application-packages>
<package-name>
org.springframework.
*
</package-name>
<package-name>
org.hibernate.
*
</package-name>
<package-name>
javax.validation.
*
</package-name>
<package-name>
javax.validation.spi.
*
</package-name>
<package-name>
org.slf4j.
*
</package-name>
</prefer-application-packages>
<show-archived-real-path-enabled>
true
</show-archived-real-path-enabled>
</container-descriptor>
</weblogic-web-app>
```
上述 3 点在部署的时候请留意。
融租易开发手册.md
View file @
3cbe074b
...
@@ -21,6 +21,7 @@
...
@@ -21,6 +21,7 @@
*
III. 后端开发
*
III. 后端开发
*
[
3.1 消息机制
](
/后端开发/消息机制.md
)
*
[
3.1 消息机制
](
/后端开发/消息机制.md
)
*
[
3.2 部署
](
/后端开发/deployment.md
)
*
IV. 前端开发
*
IV. 前端开发
...
@@ -31,4 +32,3 @@
...
@@ -31,4 +32,3 @@
*
5.1 计划任务功能描述
*
5.1 计划任务功能描述
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment