小编Tom*_*káč的帖子

无法加载驱动程序类com.mysql.jdbc.Driver

我正在尝试使用两个配置文件运行我的Spring Boot后端,一个配置文件在内存数据库中使用H2,第二个配置文件使用MySQL。H2数据库工作正常,但是当我切换到MySQL时,我得到了

APPLICATION FAILED TO START
***************************

Description:

Failed to bind properties under '' to com.zaxxer.hikari.HikariDataSource:

    Property: driverclassname
    Value: com.mysql.jdbc.Driver;
    Origin: "driverClassName" from property source "source"
    Reason: Failed to load driver class com.mysql.jdbc.Driver; in either of HikariConfig class loader or Thread context classloader

Action:

Update your application's configuration
Run Code Online (Sandbox Code Playgroud)

我尝试删除.m2,重新导入,进行maven清理,编译,安装以及我在Internet上可以找到的大多数东西,但没有成功。有趣的是,我只有MySQL数据库的其他项目,我有类似的问题,但添加mysql-connector-java依赖关系解决了它。我现在没有头绪。

application.properties

spring.profiles.active=@profilename@

#H2 in memory database
domain.datasource.type=H2
domain.datasource.url=jdbc:h2:mem:store;MODE=MYSQL;
domain.datasource.driver-class=org.h2.Driver
domain.datasource.username=sa
domain.datasource.password=
domain.datasource.generate-dll=true
Run Code Online (Sandbox Code Playgroud)

application-local_mysql.properties

spring.profiles.active=@profilename@

#MySQL local database
domain.datasource.type=MYSQL
domain.datasource.url=jdbc:mysql://localhost:3600/store;
domain.datasource.driver-class=com.mysql.jdbc.Driver;
domain.datasource.username=store
domain.datasource.password=store
domain.datasource.generate-dll=false
Run Code Online (Sandbox Code Playgroud)

pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" …
Run Code Online (Sandbox Code Playgroud)

java mysql jdbc driver spring-boot

13
推荐指数
4
解决办法
2万
查看次数

Kubernetes CronJob 多个调度时间

我想在不同的时间运行一个 cron。

是否可以在我的 YML 文件中执行类似的操作:

apiVersion: batch/v1beta1
kind: CronJob
metadata:
  name: my-cronjob
spec:
  schedule: 
    - "*/10 00-08 * * *"
    - "*/5 09-18 * * *"
    - "*/10 19-23 * * *"
  concurrencyPolicy: Forbid
...
Run Code Online (Sandbox Code Playgroud)

或者我是否必须为每个计划时间创建单独的 YML 文件?

cron kubernetes kubernetes-cronjob

9
推荐指数
1
解决办法
6840
查看次数

使用 aws-serverless-express 进行错误处理

我用来aws-serverless-express为我的 Express Web 服务提供 AWS Lambda 处理程序。

Lambda 可以工作,但是我无法从 Lambda 抛出错误。我尝试使用 try/catch 捕获整个无服务器代理,但即使应用程序抛出错误,它仍然会进入success状态。

索引.js

'use strict';
const awsServerlessExpress = require('aws-serverless-express');
const app = require('./dist/app');

const server = awsServerlessExpress.createServer(app);

exports.handler = (event, context, callback) => {
    try {
        context.callbackWaitsForEmptyEventLoop = false;
        context.succeed = (response) => {
            callback(null, response);
        };
        return awsServerlessExpress.proxy(server, event, context);
    } catch (e) {
        callback(e);
    }
};
Run Code Online (Sandbox Code Playgroud)

我有一个错误处理中间件(用作最后一个),它可以工作,但是将错误传递给next()或重新抛出错误似乎不会触发捕获index.js.

错误处理程序.js

const handleErrors = (err, req, res, next) => {

    res.setHeader('Content-Type', 'application/xml'); …
Run Code Online (Sandbox Code Playgroud)

amazon-web-services node.js express aws-lambda

5
推荐指数
0
解决办法
767
查看次数

Sequelize - 请手动安装 mysql2 包

我创建了一个单独的帮助程序库来处理数据库。

然后我将这个库导入到我的项目中。当我尝试使用 mysql 方言创建数据库连接时,它显示以下内容:Please install mysql2 package manually

我已经在我的根项目中安装了mysql2库,但它仍然无法工作。我是否还必须在帮助程序库中安装 mysql2 ?有什么方法可以安装依赖项以便在其他库中也可见吗?

我正在努力使其尽可能小。我希望可以从根应用程序配置该库。

javascript node.js sequelize.js

3
推荐指数
1
解决办法
2116
查看次数

无法绑定到 Angular 9 自定义指令

我想创建自己的身份验证指令,当用户没有所需的角色时隐藏内容。

不幸的是,我得到

Error: Template parse errors:
Can't bind to 'appHasRole' since it isn't a known property of 'div'.
Run Code Online (Sandbox Code Playgroud)

我遵循了每个教程,每个堆栈溢出问题,似乎没有任何帮助。

我创建了指令:

Error: Template parse errors:
Can't bind to 'appHasRole' since it isn't a known property of 'div'.
Run Code Online (Sandbox Code Playgroud)

由于我有多个模块,因此我创建了 SharedModule

import {Directive, ElementRef, Input, TemplateRef, ViewContainerRef} from '@angular/core';
import {AuthService} from '../../../security/auth.service';

@Directive({
  selector: '[appHasRole]'
})
export class HasRoleDirective {

  role: string;

  constructor(private element: ElementRef,
              private templateRef: TemplateRef<any>,
              private viewContainer: ViewContainerRef,
              private authService: AuthService) { }

  private updateView() {
    if (this.checkPermission()) { …
Run Code Online (Sandbox Code Playgroud)

angular-directive angular

1
推荐指数
1
解决办法
1446
查看次数