diff --git a/README.md b/README.md new file mode 100644 index 0000000..88707b8 --- /dev/null +++ b/README.md @@ -0,0 +1,57 @@ +## ºü¸¥ ½ÃÀÛ + +1. db Æú´õ¸¦ »ý¼ºÇϰí apidb.mv.db ÆÄÀÏÀ» db Æú´õ¿¡ º¹»ç + +2. ´ÙÀ½ ¸í·ÉÀ» ½ÇÇà +``` +./gradlew bootRun +``` +½ÇÇàÈ­¸é +``` +? HttpMockServer git:(master) ? ./gradlew bootRun + +> Task :bootRun + + . ____ _ __ _ _ + /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \ +( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \ + \\/ ___)| |_)| | | | | || (_| | ) ) ) ) + ' |____| .__|_| |_|_| |_\__, | / / / / + =========|_|==============|___/=/_/_/_/ + :: Spring Boot :: (v2.4.4) + +2021-07-23 12:54:37.430 INFO 28195 --- [ main] c.e.h.HttpmockserverApplication : Starting HttpmockserverApplication using Java 1.8.0_271 on yultae-u with PID 28195 (/data/workspaces/mock2/HttpMockServer/build/classes/java/main started by yultae in /data/workspaces/mock2/HttpMockServer) +2021-07-23 12:54:37.431 INFO 28195 --- [ main] c.e.h.HttpmockserverApplication : No active profile set, falling back to default profiles: default +2021-07-23 12:54:37.910 INFO 28195 --- [ main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2021-07-23 12:54:37.942 INFO 28195 --- [ main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 27 ms. Found 2 JPA repository interfaces. +2021-07-23 12:54:38.256 INFO 28195 --- [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 38443 (https) 38080 (http) +2021-07-23 12:54:38.268 INFO 28195 --- [ main] o.apache.catalina.core.StandardService : Starting service [Tomcat] +2021-07-23 12:54:38.268 INFO 28195 --- [ main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.44] +2021-07-23 12:54:38.305 INFO 28195 --- [ main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext +2021-07-23 12:54:38.305 INFO 28195 --- [ main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 760 ms +2021-07-23 12:54:38.333 INFO 28195 --- [ main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting... +2021-07-23 12:54:38.403 INFO 28195 --- [ main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed. +2021-07-23 12:54:38.407 INFO 28195 --- [ main] o.s.b.a.h2.H2ConsoleAutoConfiguration : H2 console available at '/h2-console'. Database available at 'jdbc:h2:file:./db/apidb' +2021-07-23 12:54:38.494 INFO 28195 --- [ main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default] +2021-07-23 12:54:38.515 INFO 28195 --- [ main] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.4.29.Final +2021-07-23 12:54:38.572 INFO 28195 --- [ main] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final} +2021-07-23 12:54:38.617 INFO 28195 --- [ main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.H2Dialect +Hibernate: alter table api_info drop constraint if exists UKc1jk4v6r8tqu7tlinfqsmx7o +Hibernate: alter table api_info add constraint UKc1jk4v6r8tqu7tlinfqsmx7o unique (url, service_value) +Hibernate: alter table api_service_key drop constraint if exists UKqntc9y3urphwjcwp4a0rcxx3q +Hibernate: alter table api_service_key add constraint UKqntc9y3urphwjcwp4a0rcxx3q unique (url) +2021-07-23 12:54:38.962 INFO 28195 --- [ main] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2021-07-23 12:54:38.967 INFO 28195 --- [ main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default' +2021-07-23 12:54:39.198 WARN 28195 --- [ main] JpaBaseConfiguration$JpaWebConfiguration : spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2021-07-23 12:54:39.273 INFO 28195 --- [ main] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'applicationTaskExecutor' +2021-07-23 12:54:39.320 INFO 28195 --- [ main] o.s.b.a.w.s.WelcomePageHandlerMapping : Adding welcome page template: index +2021-07-23 12:54:39.778 INFO 28195 --- [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 38443 (https) 38080 (http) with context path '' +2021-07-23 12:54:39.785 INFO 28195 --- [ main] c.e.h.HttpmockserverApplication : Started HttpmockserverApplication in 2.594 seconds (JVM running for 2.81) +<==========---> 80% EXECUTING [39s] +> :bootRun + +``` + +3. ´ÙÀ½ url ·Î Á¢¼Ó: http://localhost:38080 + +![ùȭ¸é](doc/screen.png) \ No newline at end of file diff --git a/doc/screen.png b/doc/screen.png new file mode 100644 index 0000000..eec216c Binary files /dev/null and b/doc/screen.png differ