テストプロジェクトをjarで固められるか?
- jarでは固められるけど Main.main() がないので実行できない
- main()にテストを実行するように記載する
https://support.smartbear.com/alertsite/docs/monitors/web/selenium/create-runnable-jar-from-selenium-script-using-eclipse.html
trouble shooting
No serializer found for class com.szkrkr.apidemo.app.models.Member and no properties discovered to create BeanSerializer
実行時エラー。APIのレスポンス response を jsonにできない。 lombok の @Data をつける。 C#の@SerializableObject
のようなイメージ'url' attribute is not specified and no embedded datasource could be configured.
compile error. src/main/resources/application.properties に設定spring.jpa.hibernate.ddl-auto=update spring.datasource.url=jdbc:mysql spring.datasource.username=root spring.datasource.password=
Failed to configure a DataSource: no embedded datasource could be configured.
上の形間違い。spring.jpa.hibernate.ddl-auto=update spring.datasource.url=jdbc:mysql://localhost:3306/test spring.datasource.username=root spring.datasource.password= spring.datasource.driverClassName=com.mysql.cj.jdbc.Driver
Warning:(14, 26) Raw use of parameterized class 'ArrayList'
コード解析時ワーニング。 ArrayList() -> ArrayList() Warning:(13, 36) Explicit type argument Member can be replaced with <>
コード解析時ワーニング。 Listitems; items = ArrayList<>();
sudo lsof -i:8080 sudo kill 12345