-
Notifications
You must be signed in to change notification settings - Fork 2.2k
[Break Change]: Transfer the source code from dubbo-kubernetes/refractor to here #1302
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
| @RequestMapping("/hello") | ||
| @ResponseBody | ||
| public String hello(@RequestParam(name = "name", defaultValue = "unknown user") String name) { | ||
| return "Hello " + name; |
Check failure
Code scanning / SonarCloud
Endpoints should not be vulnerable to reflected cross-site scripting (XSS) attacks High
| @RequestMapping("/save_user") | ||
| @ResponseBody | ||
| public String saveUser(User u) { | ||
| return "user will save: name=" + u.getName() + ", age=" + u.getAge(); |
Check failure
Code scanning / SonarCloud
Endpoints should not be vulnerable to reflected cross-site scripting (XSS) attacks High
| @RequestMapping(value = "/user/{userId}/roles/{roleId}", method = RequestMethod.GET) | ||
| @ResponseBody | ||
| public String getLogin(@PathVariable("userId") String userId, @PathVariable("roleId") String roleId) { | ||
| return "User Id : " + userId + " Role Id : " + roleId; |
Check failure
Code scanning / SonarCloud
Endpoints should not be vulnerable to reflected cross-site scripting (XSS) attacks High
| @RequestMapping(value = "/javabeat/{regexp1:[a-z-]+}", method = RequestMethod.GET) | ||
| @ResponseBody | ||
| public String getRegExp(@PathVariable("regexp1") String regexp1) { | ||
| return "URI Part : " + regexp1; |
Check failure
Code scanning / SonarCloud
Endpoints should not be vulnerable to reflected cross-site scripting (XSS) attacks High
…tor to here (apache#1302) transfer source code from dubbo-kubernetes/refractor to this repository




What is the purpose of the change
Transfer the source code from dubbo-kubernetes/refractor to here.