Oliver Yasuna
- 活动总数 17
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 1
- 订阅数 5
-
创建于 Disable automatic start recording with IntelliJ Profiler
已回答I often profile smaller chunks of logic in my application. Thus, I have no need for the profiler to start recording when my application starts. Is there a way to disable the automatic recording? -
创建于 How to disable the TypeScript Language Service for particular files?
已回答I use a library that generates a TypeScript file. IntelliJ will show errors on this file if I open it, thus polluting my tree with red underlines. I cannot add @ts-ignores because the library regen... -
创建于 Trigger hot reload manually?
已回答When using Gradle, building the project triggers the `classes` and `testClasses` tasks for the root project and all sub-projects. We require a custom task that disables another task which is called... -
创建于 Run configuration is never saved
已回答I am writing a plugin for CLion that adds a run configuration type to run an ISO in QEMU. The problem is that when changes are made to the run configuration editor, the IDE does not seem to be awar... -
创建于 Criteria to suppress the JPA "Persistent entity missing primary key" inspection with @MappedSuperclass?
已回答Consider the following two classes in the same module: @MappedSuperclasspublic class Foo { @Id @GeneratedValue protected Long id;} @Table@Entitypublic class Bar extends Foo {} IntelliJ understan...