码迷,mamicode.com
首页 >  
搜索关键字:weblogic deploy service    ( 26011个结果
Spring各种注解的含义及用法(持续更新)
1.基础(SpringMVC和SpringBoot都有在用) @Controller 通常用于标注在控制层类上。 @Service 通常用于标注在业务层实现类上。可以设置自定义service类的别名,在控制层引入时就需要根据设置的别名进行引入。 @Mapper 不需要在启动类上配置扫描,会在运行时通 ...
分类:编程语言   时间:2021-04-09 13:04:25    阅读次数:0
mysql5.7报错: Expression #2 of SELECT list is not in GROUP BY clause and contains nonaggregated...
今天,公司新购买了云服务器,要部署测试环境,测试时发现开发环境没问题,但测试环境却报错了,打开日志分析错误原因,原来时mysql5.7版本的sql_model默认配置了ONLY_FULL_GROUP_BY的原因。 完整错误日志如下: ### Error querying database. Caus ...
分类:数据库   时间:2021-04-08 13:20:36    阅读次数:0
linux 防火墙查看
一、iptables防火墙 1、基本操作 # 查看防火墙状态 service iptables status # 停止防火墙 service iptables stop # 启动防火墙 service iptables start # 重启防火墙 service iptables restart # ...
分类:系统相关   时间:2021-04-07 11:31:55    阅读次数:0
使用 GitHub Actions 部署 .Net 5 程序
最近尝试了一下 GitHub 提供的自动化工具 Actions,简单实现了一下 CI/CD。 配置文件需要放在 Repo 对应的目录下:.github/workflows/deploy.yml deploy.yml 具体内容如下: name: Deploy on: push: branches: [ ...
分类:Web程序   时间:2021-04-07 11:13:16    阅读次数:0
CVE-2017-12636 Couchdb 任意命令执行漏洞复现
CVE-2017-12636 Couchdb 任意命令执行漏洞 0x01.环境搭建 利用vulhub搭建漏洞环境 service docker start docker-compose up -d 查看开启的端口号 docker-compose ps 启动完成后,访问http://target_ip ...
分类:数据库   时间:2021-04-07 10:53:36    阅读次数:0
docker-compose 常见问题
WARNING: Found orphan containers (toolbox-web) for this project. If you removed or renamed this service in your compose file, you can run this command ...
分类:其他好文   时间:2021-04-07 10:38:38    阅读次数:0
vue-cli-service 不是内部或外部命令
1、安装vue - cli npm install -g @vue/cli2、原因一、 新拉取的项目没有执行 npm install,找不到相关的依赖包(也就是说没有node_modules文件夹)。 解决方法: 执行下 npm install 即可已经安装了,还是报错、3、 ...
分类:其他好文   时间:2021-04-07 10:36:36    阅读次数:0
Spring中三种创建Bean对象的方式
创建Bean的三种方式: 1、 使用类中的默认构造函数创建对象 在spring的配置文件中使用Bean标签,配以id和class属性之后,且没有其他属性和标签时,采用的就是默认构造函数创建Bean对象。故类中要提供默认构造函数。 如果没有编写任何构造方法,那么编译器会默认赠送一个构造方法,没有参数, ...
分类:编程语言   时间:2021-04-07 10:30:03    阅读次数:0
Azure App Service(一)利用Azure DevOps Pipeline 构建镜像,部署应用程序
一,引言 起因是前两天项目上做测试,需要我把写好的基于.NET 5 的 Web 测试程序作成 Docker 镜像。当我在本地验证完功能后,准备利用 Docker 构建应用程序镜像的时候,发现系统不支持安装 Docker Desktop。这下看来只能利用Azure DevOps 自动创建 Docker ...
分类:移动开发   时间:2021-04-06 15:08:41    阅读次数:0
spring-service.xml
<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
分类:编程语言   时间:2021-04-06 15:03:33    阅读次数:0
26011条   上一页 1 ... 18 19 20 21 22 ... 2602 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!