Sergio Castro
- 活动总数 58
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 2
- 订阅数 20
-
创建于 Impossible to debug "Warning: no executable code found at line"
已回答I am using the maven jetty plugin to run and debug an IntelliJ module.If I modify one class, which is located in another module in the same project, I cannot set breakpoints anymore.In fact, I can ... -
创建于 How to observe immediately compilation problems in distinct modules
Scenario:I have a Maven multi-module project.I changed the name of a method without using the refactoring utility. The method was used for another module so the project was not compilable anymore.P... -
创建于 showing warning when declaring raw types
In Eclipse I see a warning in the editor each time I declare a raw type like:List l = null;instead ofList<MyClass> l = nullI am missing this feature. How can I activate the same behavior in Intelli... -
创建于 Changing the default template for a catch block?
In certain project I need to respect the convention that exceptions declared in a catch block should be final, like: try { ...} catch (final Exception e) { ...}Where I can configure this in I... -
创建于 "Autoscroll from source" not working in the Project window when looking for a class (ctrl N)
Not sure if this is a bug or I am missing something, but I have configured the Project window as "Autoscroll to/from source". However, when I look for a class (ctrl N) and a class is selected and o... -
创建于 Best way to add dependency to external maven module
Context:I have a maven module that for some practical reasons I need to execute having in the classpath an external maven module, from another project, without having to include this dependency exp... -
创建于 Creating class implementing interface in one single step
Is it possible to somehow select an interface and instruct IntelliJ to create a new class that extends it? -
创建于 changing the execution path of a maven module
I have a maven project with several modules in nested directories.I need to be able to run a main method or a test case in a maven module such as its execution path is the root where the module is ... -
创建于 Opening again maven output console window
I run a lengthy maven build using the IntelliJ integrated maven tool.However, If I open another window, such as a terminal window, the output of the maven console dissappears.How can I view the out... -
创建于 Scratch windows shortcuts?
Hi,In a Java class I can type sout followed by <TAB> as a shortcut for System.out.println().How can I enable this behavior for a scratch window?Thanks!