[
https://issues.apache.org/jira/browse/GRIFFIN-179?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16555128#comment-16555128
]
Kwang-in (Dennis) JUNG commented on GRIFFIN-179:
------------------------------------------------
[~Kevin Yao]
I just merged recent master branch and build + run service again, and it
stucked on:
```
2018-07-25 13:38:16.636 WARN 5884 --- [ main]
o.h.v.m.ParameterMessageInterpolator : HV000184: ParameterMessageInterpolator
has been chosen, EL interpolation will not be supported
2018-07-25 13:38:16.654 INFO 5884 --- [ main]
trationDelegate$BeanPostProcessorChecker : Bean
'spring.cache-org.springframework.boot.autoconfigure.cache.CacheProperties' of
type [class org.springframework.boot.autoconfigure.cache.CacheProperties] is
not eligible for getting processed by all BeanPostProcessors (for example: not
eligible for auto-proxying)
2018-07-25 13:38:16.675 INFO 5884 --- [ main]
trationDelegate$BeanPostProcessorChecker : Bean 'cacheManagerCustomizers' of
type [class
org.springframework.boot.autoconfigure.cache.CacheManagerCustomizers] is not
eligible for getting processed by all BeanPostProcessors (for example: not
eligible for auto-proxying)
2018-07-25 13:38:16.681 INFO 5884 --- [ main]
trationDelegate$BeanPostProcessorChecker : Bean
'org.springframework.boot.autoconfigure.cache.GuavaCacheConfiguration' of type
[class
org.springframework.boot.autoconfigure.cache.GuavaCacheConfiguration$$EnhancerBySpringCGLIB$$bf14f1dc]
is not eligible for getting processed by all BeanPostProcessors (for example:
not eligible for auto-proxying)
2018-07-25 13:38:16.707 INFO 5884 --- [ main]
trationDelegate$BeanPostProcessorChecker : Bean 'cacheManager' of type [class
org.springframework.cache.guava.GuavaCacheManager] is not eligible for getting
processed by all BeanPostProcessors (for example: not eligible for
auto-proxying)
2018-07-25 13:38:16.708 INFO 5884 --- [ main]
trationDelegate$BeanPostProcessorChecker : Bean
'cacheAutoConfigurationValidator' of type [class
org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration$CacheManagerValidator]
is not eligible for getting processed by all BeanPostProcessors (for example:
not eligible for auto-proxying)
2018-07-25 13:38:17.316 INFO 5884 --- [ main]
s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat initialized with port(s):
8080 (http)
Jul 25, 2018 1:38:17 PM org.apache.catalina.core.StandardService startInternal
INFO: Starting service Tomcat
Jul 25, 2018 1:38:17 PM org.apache.catalina.core.StandardEngine startInternal
INFO: Starting Servlet Engine: Apache Tomcat/8.5.11
Jul 25, 2018 1:38:17 PM org.apache.catalina.core.ApplicationContext log
INFO: Initializing Spring embedded WebApplicationContext
2018-07-25 13:38:17.685 INFO 5884 --- [ost-startStop-1] o.s.w.c.ContextLoader :
Root WebApplicationContext: initialization completed in 5914 ms
2018-07-25 13:38:22.105 INFO 5884 --- [ost-startStop-1]
o.s.b.w.s.ServletRegistrationBean : Mapping servlet: 'dispatcherServlet' to [/]
2018-07-25 13:38:22.115 INFO 5884 --- [ost-startStop-1]
o.s.b.w.s.FilterRegistrationBean : Mapping filter: 'characterEncodingFilter'
to: [/*]
2018-07-25 13:38:22.116 INFO 5884 --- [ost-startStop-1]
o.s.b.w.s.FilterRegistrationBean : Mapping filter: 'hiddenHttpMethodFilter' to:
[/*]
2018-07-25 13:38:22.116 INFO 5884 --- [ost-startStop-1]
o.s.b.w.s.FilterRegistrationBean : Mapping filter: 'httpPutFormContentFilter'
to: [/*]
2018-07-25 13:38:22.116 INFO 5884 --- [ost-startStop-1]
o.s.b.w.s.FilterRegistrationBean : Mapping filter: 'requestContextFilter' to:
[/*]
2018-07-25 13:38:22.116 INFO 5884 --- [ost-startStop-1]
o.s.b.w.s.FilterRegistrationBean : Mapping filter: 'simpleFilter' to: [/*]
```
I thought process is ended, but it does not show nothing in localhost:8080.
Is there some problem?
> Deploy questions
> ----------------
>
> Key: GRIFFIN-179
> URL: https://issues.apache.org/jira/browse/GRIFFIN-179
> Project: Griffin (Incubating)
> Issue Type: Test
> Affects Versions: 0.2.0-incubating
> Reporter: Kwang-in (Dennis) JUNG
> Priority: Minor
>
> Hello,
> I'm starter of this project, and have some question of setting up.
> This is my application.properties...
> ```
> spring.datasource.url =
> jdbc:mysql://localhost:3306/quartz?autoReconnect=true&useSSL=false
> spring.datasource.username = griffin
> spring.datasource.password = 123456
> spring.jpa.generate-ddl=true
> spring.datasource.driver-class-name = com.mysql.jdbc.Driver
> ...
> ```
> ...and it shows problem...
>
> ```
> ...
> 2018-07-13 14:33:52.190 ERROR 6603 --- [ main] o.s.b.SpringApplication :
> Application startup failed
> org.springframework.beans.factory.UnsatisfiedDependencyException: Error
> creating bean with name 'eclipseLinkJpaConfig' defined in URL
> [jar:file:/Users/jung/workspace/etc/incubator-griffin/service/target/service-0.2.0-incubating-SNAPSHOT.jar!/BOOT-INF/classes!/org/apache/griffin/core/config/EclipseLinkJpaConfig.class]:
> Unsatisfied dependency expressed through constructor parameter 0; nested
> exception is org.springframework.beans.factory.BeanCreationException: Error
> creating bean with name 'dataSource' defined in class path resource
> [org/springframework/boot/autoconfigure/jdbc/DataSourceConfiguration$Tomcat.class]:
> Bean instantiation via factory method failed; nested exception is
> org.springframework.beans.BeanInstantiationException: Failed to instantiate
> [org.apache.tomcat.jdbc.pool.DataSource]: Factory method 'dataSource' threw
> exception; nested exception is java.lang.IllegalStateException: Cannot load
> driver class: com.mysql.jdbc.Driver
> at
> org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:749)
> ~[spring-beans-4.3.6.RELEASE.jar!/:4.3.6.RELEASE]
> at
> org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:189)
> ~[spring-beans-4.3.6.RELEASE.jar!/:4.3.6.RELEASE]
> ...
> ```
>
> As you see, I'm trying to work on with mysql.
> Could you give me some help?
>
> Thanks.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)