Mysql
 sql >> डेटाबेस >  >> RDS >> Mysql

MySQL के साथ Grails 3.1.0 की स्थापना

यहाँ मेरा है

बिल्ड.ग्रेडल:

dependencies {
    runtime 'mysql:mysql-connector-java:5.1.20'

}

अब application.yml:

dataSources:
    dataSource:
        pooled: true
        jmxExport: true
        driverClassName: com.mysql.jdbc.Driver
        dialect: org.hibernate.dialect.MySQL5InnoDBDialect
        username: username
        password: opendoor_policy
    nextdbsource:
        pooled: true
        jmxExport: true
        driverClassName: com.mysql.jdbc.Driver
        dialect: org.hibernate.dialect.MySQL5InnoDBDialect
        username: username
        password: opendoor_policy
        url: jdbc:mysql://localhost:3306/nextdbsource?autoReconnect=true&useUnicode=yes&characterEncoding=UTF-8
        dbCreate: update

environments:
    development:
        dataSources:
            dataSource:
                dbCreate: update
                url: jdbc:mysql://localhost:3306/db1?autoReconnect=true&useUnicode=yes&characterEncoding=UTF-8
    test:
        dataSources:
            dataSource:
                dbCreate: update
                url: jdbc:mysql://localhost:3306/db1?autoReconnect=true&useUnicode=yes&characterEncoding=UTF-8
    production:
        dataSources:
            dataSource:
                dbCreate: update
                url: jdbc:mysql://localhost:3306/db1?autoReconnect=true&useUnicode=yes&characterEncoding=UTF-8
                properties:
                    jmxEnabled: true
                    initialSize: 5
                    maxActive: 50
                    minIdle: 5
                    maxIdle: 25
                    maxWait: 10000
                    maxAge: 600000
                    timeBetweenEvictionRunsMillis: 5000
                    minEvictableIdleTimeMillis: 60000
                    validationQuery: SELECT 1
                    validationQueryTimeout: 3
                    validationInterval: 15000
                    testOnBorrow: true
                    testWhileIdle: true
                    testOnReturn: false
                    jdbcInterceptors: ConnectionState
                    defaultTransactionIsolation: 2 # TRANSACTION_READ_COMMITTED

---

यह मेरे लिए काम करता है और यह 2 डेटा स्रोत सेट करता है




  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. MySQL - वर्तमान उपयोगकर्ता को जानने के विभिन्न तरीके

  2. MySQL में अगला/पिछला रिकॉर्ड कैसे प्राप्त करें?

  3. Java/Mysql आप एक संपूर्ण SQL फ़ाइल को एक mysql सर्वर में कैसे इंजेक्ट करेंगे?

  4. जब mysql डेटाबेस से ड्रॉपडाउन बॉक्स का उपयोग किया जाता है तो एक पंक्ति से कई मान दिखाएं

  5. बहुत बड़ी मात्रा में डेटा के लिए डेटाबेस डिज़ाइन