Browse Source

java脚本进行表空间以及表分区创建

zoro 1 year ago
commit
73c07e09e6

+ 33 - 0
.gitignore

@@ -0,0 +1,33 @@
+HELP.md
+target/
+!.mvn/wrapper/maven-wrapper.jar
+!**/src/main/**/target/
+!**/src/test/**/target/
+
+### STS ###
+.apt_generated
+.classpath
+.factorypath
+.project
+.settings
+.springBeans
+.sts4-cache
+
+### IntelliJ IDEA ###
+.idea
+*.iws
+*.iml
+*.ipr
+
+### NetBeans ###
+/nbproject/private/
+/nbbuild/
+/dist/
+/nbdist/
+/.nb-gradle/
+build/
+!**/src/main/**/build/
+!**/src/test/**/build/
+
+### VS Code ###
+.vscode/

+ 66 - 0
pom.xml

@@ -0,0 +1,66 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.springframework.boot</groupId>
+        <artifactId>spring-boot-starter-parent</artifactId>
+        <version>2.3.12.RELEASE</version>
+        <relativePath/> <!-- lookup parent from repository -->
+    </parent>
+    <groupId>com.example</groupId>
+    <artifactId>SQLRUN</artifactId>
+    <version>0.0.1-SNAPSHOT</version>
+    <name>SQLRUN</name>
+    <description>SQLRUN</description>
+    <properties>
+        <java.version>8</java.version>
+    </properties>
+    <dependencies>
+        <dependency>
+            <groupId>org.springframework.boot</groupId>
+            <artifactId>spring-boot-starter</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>org.springframework.boot</groupId>
+            <artifactId>spring-boot-starter-freemarker</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>com.oracle.database.jdbc</groupId>
+            <artifactId>ojdbc8</artifactId>
+            <scope>runtime</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.projectlombok</groupId>
+            <artifactId>lombok</artifactId>
+            <optional>true</optional>
+        </dependency>
+        <dependency>
+            <groupId>org.springframework.boot</groupId>
+            <artifactId>spring-boot-starter-test</artifactId>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.springframework.boot</groupId>
+                <artifactId>spring-boot-maven-plugin</artifactId>
+                <configuration>
+                    <image>
+                        <builder>paketobuildpacks/builder-jammy-base:latest</builder>
+                    </image>
+                    <excludes>
+                        <exclude>
+                            <groupId>org.projectlombok</groupId>
+                            <artifactId>lombok</artifactId>
+                        </exclude>
+                    </excludes>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+</project>

+ 17 - 0
src/main/java/com/example/sqlrun/SqlrunApplication.java

@@ -0,0 +1,17 @@
+package com.example.sqlrun;
+
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+import org.springframework.scheduling.annotation.EnableAsync;
+import org.springframework.scheduling.annotation.EnableScheduling;
+
+@SpringBootApplication
+@EnableAsync
+//@EnableScheduling
+public class SqlrunApplication {
+
+    public static void main(String[] args) {
+        SpringApplication.run(SqlrunApplication.class, args);
+    }
+
+}

+ 36 - 0
src/main/java/com/example/sqlrun/conf/OracleConfiguration.java

@@ -0,0 +1,36 @@
+package com.example.sqlrun.conf;
+
+import lombok.extern.slf4j.Slf4j;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.context.annotation.Bean;
+import org.springframework.context.annotation.Configuration;
+
+import java.sql.Connection;
+import java.sql.DriverManager;
+import java.sql.Statement;
+
+@Configuration
+@Slf4j
+public class OracleConfiguration {
+    @Value("${spring.datasource.driver-class-name}")
+    private String className;
+
+    @Value("${spring.datasource.password}")
+    public String password;
+    @Value("${spring.datasource.url}")
+    private String url;
+    @Value("${spring.datasource.username}")
+    private String username;
+
+    @Bean(name = "statement")
+    public Statement executeSql(){
+        try {
+            Class.forName(className);
+            Connection connection = DriverManager.getConnection(url, username, password);
+            return connection.createStatement();
+        } catch (Exception e) {
+            log.error(e.getMessage());
+        }
+        return null;
+    }
+}

+ 22 - 0
src/main/java/com/example/sqlrun/test.java

@@ -0,0 +1,22 @@
+package com.example.sqlrun;
+
+import org.springframework.stereotype.Component;
+
+import javax.annotation.PostConstruct;
+import javax.annotation.Resource;
+import java.sql.SQLException;
+import java.sql.Statement;
+
+@Component
+public class test {
+
+    @Resource(name = "statement")
+    private Statement statement;
+    @PostConstruct
+    public void executeSql() throws SQLException {
+        //boolean execute = statement.execute("create tablespace \"GHJGCHANNEL_TEST\"  datafile 'D:\\APP\\ADMINISTRATOR\\ORADATA\\TEST\\TEST1.DBF' size 1M autoextend on next 1M MAXSIZE 10M");
+        boolean execute = statement.execute("alter table GHJG_CHANNEL.TEST ADD PARTITION TEST20231202 VALUES LESS THAN (TO_DATE('2023-12-03 00:00:00','YYYY-MM-DD hh24:mi:ss')) tablespace GHJGCHANNEL_TEST");
+        statement
+        System.out.println(execute);
+    }
+}

+ 14 - 0
src/main/resources/application.yaml

@@ -0,0 +1,14 @@
+server:
+  port: 7070
+spring:
+  datasource:
+    driver-class-name: oracle.jdbc.driver.OracleDriver
+    hikari:
+      idle-timeout: 30000
+      maximum-pool-size: 150
+    password: GHJG@123
+    url: jdbc:oracle:thin:@//10.114.4.56/shhwdb
+    username: ghjg_basics
+  freemarker:
+    check-template-location: false
+#    url: jdbc:oracle:thin:@//198.39.1.218/shhwdb