First make sure uninstall all of the old Ubuntu
installation under App & Features
.
Install Windows Subsystem for Linux
under App & Features
> Optional features
> More Windows features
, then
wsl --update
Executing stored procedures in Spring Boot using the @Procedure
annotation provides a convenient way to interact with database procedures. By annotating a method with @Procedure
and specifying the procedure name, you can easily call stored procedures, pass parameters, and handle result sets, simplifying the integration of stored procedures in your Spring Boot application.
#!/bin/sh | |
# Usage: export JAVA_TOOL_OPTIONS=`get-java-opts-proxy` | |
local_http_proxy=${HTTP_PROXY:-$http_proxy} | |
if [ -n "$local_http_proxy" ] ; then | |
if [ $? -eq 0 ]; then # If variable has username and password, its parse method different | |
http_proxy_host=$(echo $local_http_proxy | sed 's/http:\/\/.*@\(.*\):.*/\1/') | |
http_proxy_port=$(echo $local_http_proxy | sed 's/http:\/\/.*@.*:\(.*\)/\1/' | tr -d "/") |
echo "import java.net.InetAddress; \
public class HostnameFromIp { \
public static void main(String[] args) throws Exception { \
var startTime = System.currentTimeMillis(); \
System.out.println(InetAddress.getByName(args[0]).getHostName() + \
\" - \" + (System.currentTimeMillis() - startTime) + \"ms\"); \
} \
}" > HostnameFromIp.java
--Create user xxx_dba | |
create user xxx_dba with encrypted password 'Dba12345'; | |
--Create app user | |
create user xxx_user with encrypted password 'User12345'; | |
--Create xxx database (db owner = xxx_dba) | |
create database xxx with owner xxx_dba; | |
--Change db to xxx without change user |
helm repo add sonarqube https://SonarSource.github.io/helm-chart-sonarqube
helm repo update
kubectl create namespace sonarqube
helm upgrade --install -n sonarqube sonarqube sonarqube/sonarqube \
--set ingress.enabled="true" \