Spring-FW in VScode => Actulator view - spring

I'm currently checking out the Spring framework and I try to rebuild the Tutorial on JetBrains. All works so far, but the step of the actuator view (health view) I'm not really able to reproduce with VSCode. Did I miss something here? Or is there currently simply no support (extension) for VSCode?
Greetings!

After checking for some plugins, VSCode doesn't seem to support the actuator component. Thank also to #M.Deinum.

Related

UI testing for react native apps

i am currently working on a UI automated testing project.
my job is to do UI automated testing on applications built via react-native.
the problem is that react-native doesn't provide resource-id.
i tried nativeID, and testID, and it didn't work out.
i tried accessibilityLabel but this is not the way to do it, because it assigns to the content-descp: which is used by the blind mode.
i tried cavy which is an integrated-ui testing tool, but it's very new, and there is not much support, plus it's not quit developped yet.
i tried selendroid, but i am facing some problems while loading the app in the local selendroid server, i think it has something to do with react native.
any help please!
On the project I’m working on right now, we are using Calabash for both Android and iOS. testID works with Calabash like this:
If you have a view with testID some-id, then you can query for it in calabash with query string ”* marked: some-id”
https://github.com/calabash/calabash-ios
I have also heard people having success with Appium, which is quite similar I think.
You can add AccessbiltiyLabel so that you will be able to automate via
driver.findElement(by.accessibility("id");

Does Intellij Support Standalone Gorm with Spring Boot

Does IntelliJ Support Standalone Gorm? In the sense that it offers method completion for domain objects. There is a lot of information out there that says it has been implemented, however, as of March 29, 2017 on YouTrack it appears that it is still unavailable.
Documentation for IntelliJ 13 also explicitly states that GORM standalone is supported, however, it does not seem to work when configured with Spring Boot.
It was also supposedly released with IntelliJ 16.
So has anyone gotten it to work? What do you need to do to configure your project to support standalone gorm?
Does IntelliJ Support Standalone Gorm?
Yes.
So has anyone gotten it to work?
Yes. Nothing special is required to do that. As an example, open the project at https://github.com/grails-samples/gorm-outside-grails in IntelliJ IDEA. That isn't a boot app, but if it were, the relevant behavior still works the same way. To see auto-completion in action, edit the file at https://github.com/grails-samples/gorm-outside-grails/blob/d56e56bc12b2ba9732449fd6779ae0ac0e487ec2/src/test/groovy/domain/PersonSpec.groovy and see the autocompletion you get behind p.<method name goes here>. You get completion for all the normal GORM methods like attach, discard, hasErrors etc. You also get auto completion for things like dynamic finders. It all works quite well.

How to use webstorm 11 to debug meteor 1.2 application with ecmascript package

After recently updating my project to meteor 1.2 and including the new ecmascript package (to use ES2015 features), I realized that my server debug breakpoints will never run, no matter what I do.
After reading about different ES6 posts on meteor forums and jetbrains , I tried setting up file watchers to create sourcemaps, but:
meteor complains about the generated files(so you have to move them to special folders in order to keep going)
It still doesn't work :(
Setting up spy-js also didn't work (never tried before so maybe I did it wrong)
I could reproduce the problem with the basic TODOs application and debugging with default options.
It is fixed for now in EAP 11 builds.
Known issue, please follow WEB-18074 for updates. Unfortunately I can't offer any workarounds:(

How can I set User Defined Build Settings for XCode in premake?

I need premake to set the EXCLUDED_SOURCE_FILE_NAMES and INCLUDED_SOURCE_FILE_NAMES variables for my XCode project. Anybody knows how to do this?
There isn't a way to do that directly, but if you provide more details on what you are trying to achieve there might be a workaround. You are already aware of the excludes() API?
In response to additional information in comment: Ah, a unity build then. That isn't directly supported yet, no, though it is coming up quick on the roadmap now. The way most people handle it currently is as a separate project. Not as convenient or elegant, but does allow Debug, Release etc. configurations of the unity build, which can useful too.

Add Web Service Reference Weird Problem in WP7

I have a WP7 project in VS2010 pro/ultimate and I have added a web reference from another project on the same solution. The web service project is just a normal website project, I just created .ASMX file. I tested the service using web browser and it works fine.
The problem is, after I added this service as service reference, I cannot reference it in my WP7 project and I can't view it in Object Browser either as if it doesn't exist.
I use local URL like 'http://localhost:12345/WebService.asmx' when I added the service, VS can see all the methods and can add successfully. Very strange for me and I don't know how to solve this issue.
Anyone can give me any clue on this? Thanks very much.
I've had a similar issues before- on one machine, a restart was required, on another, I had to uninstall ALL of my SL stuff, then uninstall Vstudio, then reinstall and reapply any SL add-ons.
Then it worked fine.
Also had a friend with the same issue- uninstall all, then reinstall worked for him also.
I believe these were machines with pre-rtm SL and Phone bits on them.
I've had a similar problem. I created a WP7 project using VB.Net. I built a WCF Class web service, a client side proxy class, and then a WP7 application with the service reference. When I added the service reference, the code generating utility would not build the required Reference.svcmap file detail (it only created the header information). However the project would still compile, yet I couldn't reference the service in code as it didn't exist in the underlying files.
I tried recreating the WP7 project in C# and everything worked. My guess is that the VB implementation of WP7 might still have some issues, however that is a guess only. I'm keen to see if anyone else has had the same issue specific to the VB WP7 template or if it is something else.
I bumped into the same problem, but it was fixed after a reboot as suggested in this thread by dethSwatch.
I do remember that a silverlight SDK update was installed a bit earlier, maybe the reboot is required after the update?
I think this issue might be related to the January Update to the WP7 tools. I managed to fix this issue by installing the VS10-KB2486994-x86.exe fix found on the above page. That sorted the issue I had with generating a client side proxy for the WCF service I wanted to call. Hope this helps.

Resources