Lin Yang
- Total activity 99
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 47
-
Created SQL injection issue
I have developed a MyBatis plugin which injects SQL language into mapper XML. MyBatis can use XML tags to describe generate some SQL keyword. For example, MyBatis can use <set> tag to generate 'set... -
Created Open API request
Hi guys, I'm implementing a Mybatis plugin. There are some annotations (@Select, @Delete, etc. ) in Mybatis that accept an array of strings as arguments, these strings are concatenated with a sing... -
Created Invoking 'Refactor this' freeze ui
Hi guys, Each time I invoke 'Refactor this' in 270 lines of XML file with many SQL injected, the UI gets frozen. Here is the thread dump. Can anyone help me a bit, please? Thanks "AWT-EventQueue-... -
Edited Is there anyway to highlight 'injection in injection'?
AnsweredCurrently, I can inject language A into language B, and completions, highlightings, references work well if B is opened in an independent file. But they don't work well if I inject language B into ... -
Edited I need help on plugin development
AnsweredI'm developing a mybatis plugin, I have a problem when I try to implement following feature. I have a mapper xml like bellow: <?xml version="1.0" encoding="UTF-8" ?><!DOCTYPE mapper PUBLIC "-//myb... -
Edited Referenced PsiClass stays as "Class 'ClassName' is never used"
I created an XML configuration file and make an attribute value be referencing to a PsiClass. Here is the XML and JAVA file segment <settings> <setting name="configurationFactory" value="custom"/>... -
Created help me with Grammar Kit
I wrote a grammar like below: { tokens=[ DEL_COMMAND="regexp:[dD][eE][lL]" SET_COMMAND="regexp:[sS][eE][tT]" DUMP_COMMAND="regexp:[dD][uU][mM][pP]" EXISTS_COMMAND="regexp:[eE][xX][iI][... -
Created Color Schema
Hi, Is there any plan to custom the background color the navigation bar and tool bar ?Thanks -
Created get information from method invocation
hi, there are codes below: public static final String JET_BRAINS = "JetBrains"; public String getText() { return "Hello"; } public void test(List<String> texts) { texts.a... -
Created Help me with my plugin
hi, I'm developing MyBatis plugin. It seems that @Autowired and @Resource annotation of spring do not work well sometimes when my plugin is enabled. I'v tried my best to find the reason, but ...