mirror of
https://gitee.com/wujiawei1207537021/wu-lazy-cloud-network.git
synced 2025-06-07 13:57:56 +08:00
[fix] 修改数据库模型无法扫描命中问题
This commit is contained in:
parent
5d61854491
commit
a3a16394ef
@ -34,7 +34,7 @@
|
|||||||
<!-- <!– imageName用于设置生成的二进制文件名称 –>-->
|
<!-- <!– imageName用于设置生成的二进制文件名称 –>-->
|
||||||
<!-- <imageName>${project.artifactId}</imageName>-->
|
<!-- <imageName>${project.artifactId}</imageName>-->
|
||||||
<!-- <!– mainClass用于指定main方法类路径 –>-->
|
<!-- <!– mainClass用于指定main方法类路径 –>-->
|
||||||
<!-- <mainClass>wu.framework.lazy.cloud.heartbeat.client.LazyCloudHeartbeatClient</mainClass>-->
|
<!-- <mainClass>wu.framework.lazy.cloud.heartbeat.client.LazyCloudHeartbeatClientSimpleSimple</mainClass>-->
|
||||||
<!-- <buildArgs>-->
|
<!-- <buildArgs>-->
|
||||||
<!-- --no-fallback-->
|
<!-- --no-fallback-->
|
||||||
<!-- </buildArgs>-->
|
<!-- </buildArgs>-->
|
||||||
|
@ -8,8 +8,8 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
@SpringBootApplication
|
@SpringBootApplication
|
||||||
public class LazyCloudHeartbeatClient {
|
public class LazyCloudHeartbeatClientSimple {
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
SpringApplication.run(LazyCloudHeartbeatClient.class,args);
|
SpringApplication.run(LazyCloudHeartbeatClientSimple.class,args);
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -9,8 +9,8 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|||||||
*/
|
*/
|
||||||
@Slf4j
|
@Slf4j
|
||||||
@SpringBootApplication
|
@SpringBootApplication
|
||||||
public class LazyCloudHeartbeatServer {
|
public class LazyCloudHeartbeatServerSimple {
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
SpringApplication.run(LazyCloudHeartbeatServer.class,args);
|
SpringApplication.run(LazyCloudHeartbeatServerSimple.class,args);
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -43,6 +43,10 @@
|
|||||||
<groupId>top.wu2020</groupId>
|
<groupId>top.wu2020</groupId>
|
||||||
<artifactId>wu-database-lazy-plus-starter</artifactId>
|
<artifactId>wu-database-lazy-plus-starter</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>top.wu2020</groupId>
|
||||||
|
<artifactId>wu-authorization-server-starter</artifactId>
|
||||||
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.alibaba</groupId>
|
<groupId>com.alibaba</groupId>
|
||||||
<artifactId>fastjson</artifactId>
|
<artifactId>fastjson</artifactId>
|
||||||
|
@ -0,0 +1,23 @@
|
|||||||
|
package wu.framework.lazy.cloud.heartbeat.server.config;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
||||||
|
import org.springframework.context.annotation.Configuration;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 服务端配置信息
|
||||||
|
*/
|
||||||
|
@Configuration
|
||||||
|
@ConfigurationProperties(prefix = HeartbeatProperties.prefix)
|
||||||
|
@Data
|
||||||
|
public class HeartbeatProperties {
|
||||||
|
public static final String prefix = "spring.lazy.cloud.heartbeat.server";
|
||||||
|
/**
|
||||||
|
* 账号
|
||||||
|
*/
|
||||||
|
private String username;
|
||||||
|
/**
|
||||||
|
* 密码
|
||||||
|
*/
|
||||||
|
private String password;
|
||||||
|
}
|
1
wu-lazy-cloud-network-ui/.eslintignore
Normal file
1
wu-lazy-cloud-network-ui/.eslintignore
Normal file
@ -0,0 +1 @@
|
|||||||
|
# *
|
31
wu-lazy-cloud-network-ui/.eslintrc.js
Normal file
31
wu-lazy-cloud-network-ui/.eslintrc.js
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
module.exports = {
|
||||||
|
root: true,
|
||||||
|
|
||||||
|
env: {
|
||||||
|
node: true,
|
||||||
|
},
|
||||||
|
|
||||||
|
extends: [
|
||||||
|
"plugin:vue/vue3-essential",
|
||||||
|
"eslint:recommended",
|
||||||
|
"@vue/prettier",
|
||||||
|
],
|
||||||
|
|
||||||
|
parserOptions: {
|
||||||
|
parser: "@babel/eslint-parser",
|
||||||
|
},
|
||||||
|
// "writable" 以允许重写变量,或 "readonly" 不允许重写变量
|
||||||
|
globals: {
|
||||||
|
XE: "readonly",
|
||||||
|
VE_ENV: "readonly",
|
||||||
|
VE_API: "readonly",
|
||||||
|
},
|
||||||
|
|
||||||
|
rules: {
|
||||||
|
indent: [2, 4, { SwitchCase: 1 }],
|
||||||
|
"prettier/prettier": [2, { tabWidth: 4, endOfLine: "auto" }],
|
||||||
|
"no-console": "off",
|
||||||
|
"no-debugger": "off",
|
||||||
|
"vue/multi-word-component-names": 0,
|
||||||
|
},
|
||||||
|
};
|
@ -268,6 +268,11 @@ VE_API [ fileName ][ portName ] (params,{Global:false) //没有全局loading
|
|||||||
## 声明
|
## 声明
|
||||||
|
|
||||||
个人开发维护! 欢迎交流学习!
|
个人开发维护! 欢迎交流学习!
|
||||||
|
|
||||||
|
设置阿里云镜像仓库
|
||||||
|
```shell
|
||||||
|
npm config set registry http://registry.npm.taobao.org/
|
||||||
|
```
|
||||||
```shell
|
```shell
|
||||||
yarn run build
|
yarn run build
|
||||||
|
|
||||||
@ -275,7 +280,7 @@ yarn run build
|
|||||||
|
|
||||||
docker login --username=1207537021@qq.com registry.cn-hangzhou.aliyuncs.com
|
docker login --username=1207537021@qq.com registry.cn-hangzhou.aliyuncs.com
|
||||||
```shell
|
```shell
|
||||||
docker build -t registry.cn-hangzhou.aliyuncs.com/wu-lazy/wu-smart-acw-server:ui-master .
|
docker build -t registry.cn-hangzhou.aliyuncs.com/wu-lazy/wu-lazy-cloud-network-ui:ui-master .
|
||||||
docker push registry.cn-hangzhou.aliyuncs.com/wu-lazy/wu-smart-acw-server:ui-master
|
docker push registry.cn-hangzhou.aliyuncs.com/wu-lazy/wu-lazy-cloud-network-ui:ui-master
|
||||||
|
|
||||||
```
|
```
|
||||||
|
@ -14,7 +14,7 @@ module.exports = {
|
|||||||
"/acw-server/": {
|
"/acw-server/": {
|
||||||
// 'demo'是请求地址中,以demo开头都适用这个
|
// 'demo'是请求地址中,以demo开头都适用这个
|
||||||
// target: "http://47.92.27.215:520/", // 真实的服务器地址
|
// target: "http://47.92.27.215:520/", // 真实的服务器地址
|
||||||
target: "http://127.0.0.1:18080", // 真实的服务器地址
|
target: "http://127.0.0.1:6001", // 真实的服务器地址
|
||||||
changeOrigin: true, //
|
changeOrigin: true, //
|
||||||
secure: false, // 默认情况下,不接受运行在 HTTPS 上,且使用了无效证书的后端服务器。如果你想要接受设为false
|
secure: false, // 默认情况下,不接受运行在 HTTPS 上,且使用了无效证书的后端服务器。如果你想要接受设为false
|
||||||
ws: false, // 是否启用websockets
|
ws: false, // 是否启用websockets
|
||||||
@ -25,7 +25,7 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
"/": {
|
"/": {
|
||||||
// 'demo'是请求地址中,以demo开头都适用这个
|
// 'demo'是请求地址中,以demo开头都适用这个
|
||||||
target: "http://127.0.0.1:18080", // 真实的服务器地址
|
target: "http://127.0.0.1:6001", // 真实的服务器地址
|
||||||
changeOrigin: true, //
|
changeOrigin: true, //
|
||||||
secure: false, // 默认情况下,不接受运行在 HTTPS 上,且使用了无效证书的后端服务器。如果你想要接受设为false
|
secure: false, // 默认情况下,不接受运行在 HTTPS 上,且使用了无效证书的后端服务器。如果你想要接受设为false
|
||||||
ws: false, // 是否启用websockets
|
ws: false, // 是否启用websockets
|
||||||
|
Loading…
x
Reference in New Issue
Block a user