JHipster: различия между версиями
Перейти к навигации
Перейти к поиску
FireWolf (обсуждение | вклад) |
FireWolf (обсуждение | вклад) |
||
Строка 16: | Строка 16: | ||
yarn run cleanup && yarn run webpack:build:main | yarn run cleanup && yarn run webpack:build:main | ||
</syntaxhighlight> | </syntaxhighlight> | ||
== Запуск и отладка тестов в Eclipse == | |||
Если не работает запуск и вываливается с ошибкой: | |||
<syntaxhighlight> | |||
Caused by: org.hibernate.cache.NoCacheRegionFactoryAvailableException: Second-level cache is used in the application, but property hibernate.cache.region.factory_class is not given; please either disable second level cache or set correct region factory using the hibernate.cache.region.factory_class setting and make sure the second level cache provider (hibernate-infinispan, e.g.) is available on the classpath. | |||
</syntaxhighlight> | |||
# открыть файл src/test/resources/config/application.yml | |||
# найти строку hibernate.cache.use_second_level_cache: false | |||
# заменить на hibernate.cache.use_second_level_cache: true | |||
# сохранить | |||
# вернуть (повтрно заменить) на hibernate.cache.use_second_level_cache: false | |||
# сохранить | |||
и пробовать запустить заново. |
Версия 04:10, 31 августа 2017
Применение material-design
npm install -g generator-jhipster-bootstrap-material-design yo jhipster-bootstrap-material-design
Добавление/редактирование сущности
yo jhipster:entity points
Angular4
Пересобрать клиентскую часть:
yarn run cleanup && yarn run webpack:build:main
Запуск и отладка тестов в Eclipse
Если не работает запуск и вываливается с ошибкой:
Caused by: org.hibernate.cache.NoCacheRegionFactoryAvailableException: Second-level cache is used in the application, but property hibernate.cache.region.factory_class is not given; please either disable second level cache or set correct region factory using the hibernate.cache.region.factory_class setting and make sure the second level cache provider (hibernate-infinispan, e.g.) is available on the classpath.
- открыть файл src/test/resources/config/application.yml
- найти строку hibernate.cache.use_second_level_cache: false
- заменить на hibernate.cache.use_second_level_cache: true
- сохранить
- вернуть (повтрно заменить) на hibernate.cache.use_second_level_cache: false
- сохранить
и пробовать запустить заново.